servoweb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom Blocks not working on PagesJust wrapping this one up.
All files were fine, ended up being a corrupt character in the database’s post table that was causing not only the aforementioned issues but also a few other problems as well.
Restored last known good db then redid any edits created since and we’re back to good.
Fin.
Forum: Fixing WordPress
In reply to: Custom Blocks not working on PagesThanks for that annezuzu and sorry for the late reply!
Haven’t had a ton of time to dedicate towards this but thinking there is a corrupt file somewhere in the path. Managed to find a temporary workaround but will post back if we ever do find a definitive reason as to why this is happening. :S
Thanks again!
Right on, thanks very much!
The link was in the footer, just didn’t see it first time around. ??
Cheers!
Forum: Plugins
In reply to: [WP Mobile Detector] Revert to Desktophey jtrost,
can you try reposting that functions.php edit using pastebin?
sounds like your solution just might work for my needs, but your code has been moderated.
thanks!
Forum: Plugins
In reply to: Looking to create two navigation bars for Pages, with different contentWe ended up using a mixture of the exclude tag and Pixopoint’s Drop Down menu plugin.
We used this to list the top navigation:
<?php wp_list_pages("title_li=&depth=1&exclude=1,2,3"); ?>
Then included the specific pages needed for the primary navigation area in a setting within the plugin’s admin area.
Reason we did it this way is that the second line using the Pixopoint menu has a pretty tight layout and the client has no plans to edit the links.
Hence, the top navigation menu lists all parent pages that are not included in the Pixopoint menu, that way there is space for the client to add new menu items to the top navigation if the need arises.
So I guess it’s a bit of a hybrid hard/dynamically coded solution, but suits our needs just fine.
Hope that helps!