Steven
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom Menu Items and Links on a PageAre you using the “menu builder” in WP?
If yes, just use wp_nav_menu.Example of it’s use:
wp_nav_menu(array('menu' => 'Main menu')); ?></nav>
To list WP links, you can use WP List Bookmarks.
Forum: Themes and Templates
In reply to: current_user_can not working with custom rolesHas anyone found an answer for Havahula’s and Geert’s problem?
Forum: Networking WordPress
In reply to: Some plugins are not showing in sub sitesI’ve figured out what’s “wrong”.
Plugins that are network activated, are not showing up in plugin list for sub-sites. But they are still active.
The only draw back I see with this, is if I want to de-activate a network activated plugin for a specific sub-site.
Forum: Networking WordPress
In reply to: Some plugins are not showing in sub sitesOk, I can’t edit above text, so I’m adding new text here.
I just created a new simple plugin and network activated this.
But it does not show up in any sub sites. So the network activation is not working.I have no idea what I should do now. Need some quick help here :-/
Forum: Networking WordPress
In reply to: Smart Lencioni Image Resizer (SLIR)If you wan’t more details about my problem, you can read that here: https://wordpress.stackexchange.com/questions/6579/autoload-in-a-plugin-throws-an-error-in-wp-not-able-to-locate-translation-ent
Forum: Fixing WordPress
In reply to: Need help with add_rewrite_ruleI got it working. See my solution here:
https://wordpress.stackexchange.com/questions/5413/need-help-with-add-rewrite-ruleForum: Fixing WordPress
In reply to: Need help with add_rewrite_ruleI’ve got an another discussion on this topic here: https://wordpress.stackexchange.com/questions/5413/need-help-with-add-rewrite-rule/5478#5478
I’ve tried so many solutions, but nothing seems to work ??
Forum: Fixing WordPress
In reply to: Need help with add_rewrite_rule@curtiss: I don’t think I understand what I need to do out from that article ??
I’ve tried several more variations. but without any luck whatsoever ??
I’ll be a very happy man if someone could help me with this.
Forum: Fixing WordPress
In reply to: Need help with add_rewrite_ruleWhy do I have to backup files and DB?
The URL is still the same when I’m testing on my local pc.
I’m using .com and point the DNS to localhost.Forum: Fixing WordPress
In reply to: ConvertEntities is not defined ?I have run in to this multiple times.
Can this be due to loading other jQuery scripts from plugins?Forum: Fixing WordPress
In reply to: Does $wpdb->update always return 0 (zero) ?Ok, so it doesn’t ALWAYS return 0.
Using $wpdb->update in another plugin I have created, returns 1 when successfully executed.
Forum: Fixing WordPress
In reply to: Permalink and archive problemsThe code is still on localhost.
I found the solution.
Looking at some previous archive templates I’ve created, I manage to use the right code. So all works fine now ??
Forum: Fixing WordPress
In reply to: /wp-admin/index.php gives blank pageIt’s known as the “White screen of death”.
There are a few posts regarding this, maybe this will help you:https://jaredheinrichs.com/how-to-troubleshoot-wordpress-white-screen-of-death.html
https://www.colinmcnulty.com/blog/2008/07/08/solution-to-wordpress-blank-screen-of-death/
https://www.ads-software.com/support/topic/white-screen-of-death-7?replies=28
Forum: Fixing WordPress
In reply to: WP Bug? "makeSlugeditClickable is not defined"Forgot to say that all plugins are deactivated.
Forum: Fixing WordPress
In reply to: Including jQuery breaks dashboard JavaScriptThis worked for me:
wp_deregister_script('jquery-ui-core','jquery-ui-dialog'); wp_register_script('jquery-ui','https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.js',array('jquery')); wp_enqueue_script('jquery-ui');