Aboelabbas
@dawn-birth on WordPress.org
- Member Since: September 14th, 2010
Contribution History
Aboelabbas’s badges:- Translation Contributor Translation Contributor
-
Posted a reply to Show images instead of categories in front end, on the site WordPress.org Forums:
There is more than one plugin to do this, this is one of them: https://wordpress.org/plugins/categories-images/…2 years ago
-
Posted a reply to display custom field according to user role, on the site WordPress.org Forums:
You forgot to close parentheses on the first line <?php if( current_user_can( 'administrator' ) ){…2 years ago
-
Posted a reply to wp search-replace skipped tables, on the site WordPress.org Forums:
I don't actually know the cause, but this link may be helpful: https://kellenmace.com/wp-cli-search-replace-tables-skipped/3 years ago
-
Posted a reply to need to edit wp_options, on the site WordPress.org Forums:
It seems that his array contains all options of the theme, so you will need…3 years ago
-
Posted a reply to Get Taxonomy name from “registered_taxonomy” hook, on the site WordPress.org Forums:
Taxonomy name is a property of labels object; It should be like this: $catname =…3 years ago
-
Posted a reply to need to edit wp_options, on the site WordPress.org Forums:
You can use get_option() to get the value of the option that you want to…3 years ago
-
Posted a reply to Where are the posts in file manager?, on the site WordPress.org Forums:
https://codex.wordpress.org/Moving_WordPress3 years ago
-
Posted a reply to Excluding a set of words from editor word count, on the site WordPress.org Forums:
The final code you can use in your plugin or theme: function myplugin_countStopWords(){ ?> <script>…3 years ago
-
Posted a reply to Excluding a set of words from editor word count, on the site WordPress.org Forums:
in 'wp-admin/js/post.js' you cam take this part and change it in your plugin: /** *…3 years ago
-
Posted a reply to redirect url, on the site WordPress.org Forums:
The first argument of wp_die() is either a string or WP_Error object; so wp_redirect will…3 years ago
-
Posted a reply to Menu doesn’t open on Category Archive Pages, on the site WordPress.org Forums:
May be because your theme allows you to add a different menu for the category…3 years ago
-
Posted a reply to Term Count Column counts only published posts, on the site WordPress.org Forums:
You can Use Wp_Query to get posts count in each term. More details here: https://wordpress.stackexchange.com/a/1217683 years ago
-
Posted a reply to Ordering in a drop down list, on the site WordPress.org Forums:
You can change the sort order from Your dashboard, as you are using WooCommerce plugin.…3 years ago
-
Posted a reply to Ordering in a drop down list, on the site WordPress.org Forums:
Try to put a leading zero before 80 and 90 to be like this: 080,090,100,...3 years ago
-
Posted a reply to How to run plugin only on page?, on the site WordPress.org Forums:
You can use conditional tags if ( is_single() ) { // Do something on single…3 years ago
-
Posted a reply to insert category, on the site WordPress.org Forums:
Here is a similar question on stackexchange: https://wordpress.stackexchange.com/questions/20043/inserting-taxonomy-terms-during-a-plugin-activation3 years ago
-
Posted a reply to insert category, on the site WordPress.org Forums:
No, it will be added on activation only, the idea here is to register the…3 years ago
-
Posted a reply to insert category, on the site WordPress.org Forums:
Try this; call the function that registers the taxonomy within "bbradley_rfp_activation()" Something like this: add_action(…3 years ago
-
Posted a reply to insert category, on the site WordPress.org Forums:
It should work very fine, but make sure that line lies inside the main plugin…3 years ago
-
Posted a reply to Issue displaying video from custom meta, on the site WordPress.org Forums:
WordPress embeds locally hosted videos using '[video]' shortcode, So you can achieve what you want…3 years ago
-
Posted a reply to How to replace content of requested post on another?, on the site WordPress.org Forums:
I don't understand what you actually want to do, but if you want to completely…3 years ago
-
Posted a reply to Issue displaying video from custom meta, on the site WordPress.org Forums:
You can change this: Embeds3 years ago