Aboelabbas
@dawn-birth on WordPress.org
- Member Since: September 14th, 2010
Contribution History
Aboelabbas’s badges:- 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/… -
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' ) ){… -
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/ -
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… -
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 =… -
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… -
Posted a reply to Where are the posts in file manager?, on the site WordPress.org Forums:
https://codex.wordpress.org/Moving_WordPress -
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>… -
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: /** *… -
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… -
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… -
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/121768 -
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.… -
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,... -
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… -
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-activation -
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… -
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(… -
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… -
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… -
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… -
Posted a reply to Issue displaying video from custom meta, on the site WordPress.org Forums:
You can change this: Embeds