diff --git a/css/style.css b/css/style.css index 277a03dea..c0d779f8c 100644 --- a/css/style.css +++ b/css/style.css @@ -255,7 +255,6 @@ float: left;} border-right: 1px solid #eee; } .top_left_instructions ol li{ - text-align: justify; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; diff --git a/inc/core.php b/inc/core.php index 1f7b59f79..c17518145 100644 --- a/inc/core.php +++ b/inc/core.php @@ -919,6 +919,7 @@ public function generateTweetFromPost($postQuery, $network, $fromManageQueue=fal } // Added by Ash/Upwork + $finalTweet = apply_filters("rop_override_tweet", $finalTweet, $postQuery); $fTweet['message'] = $finalTweet ; return $fTweet; @@ -2336,6 +2337,7 @@ public function resetAllOptions() 'top_fb_token' =>'', 'top_opt_post_formats' =>'', // Added by Ash/Upwork + 'cwp_rop_custom_messages' => 'off', 'top_opt_posts_buffer_twitter' => '', 'top_opt_posts_buffer_facebook' => '', 'top_opt_posts_buffer_linkedin' => '', @@ -2546,11 +2548,11 @@ public static function generateFieldType($field) ) ); if(!empty($terms)){ // Added by Ash/Upwork - $options = array(); + $options = array(); foreach ($terms as $t) { - $options[$t->name] = $t->term_id; + $options[] = array("label" => $t->name, "id" => $t->term_id); } - $taxonomies[$tx->labels->name] = $options; + $taxonomies[] = array("label" => $tx->labels->name, "values" => $options); // Added by Ash/Upwork } } diff --git a/inc/view-categories-list.php b/inc/view-categories-list.php index 418547270..3f43e46e3 100644 --- a/inc/view-categories-list.php +++ b/inc/view-categories-list.php @@ -16,11 +16,15 @@