luckdragon
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom labels for the fields on the comment form?check line 1536 for the word “Comment”, line 1527 for ‘Email’, etc…
Forum: Fixing WordPress
In reply to: Custom labels for the fields on the comment form?it’s in wp-includes/comment-template.php tho you can probably override it with a locality setting.
Forum: Fixing WordPress
In reply to: disabling some plugin on mobile siteassuming that you have some way to detect if they are mobile:
put this in your functions.php for your mobile theme.
$mobile = detect_mobile(); if ($mobile) { deactivate_plugins( '/plugin-folder/plugin-name.php' ); }Forum: Fixing WordPress
In reply to: unwanted links being generatedwow, if you look at your code, it’s generating that link like 5 times (the first 3 aren’t being shown), it might be easier to answer if we saw part of the code that does the generation. remember, if it’s over 10 lines to paste it to wordpress.pastebin.com
Forum: Fixing WordPress
In reply to: Hemingway Theme-Number of posts on home pageif the code specifically states query_posts(‘showposts=5’) that will override anything, additionally, there might be a limit arg being passed somewhere.
Forum: Fixing WordPress
In reply to: Long list of menu words appeared above header?go to appearance -> menus and set your top nav menu (probably primary menu) a blank menu
Forum: Fixing WordPress
In reply to: having a "blond moment" or "brain fart"figured it out..
add_submenu_page('trees', '', '', 'manage_options', 'trees-sizes', 'trees_sizes');just had to add a menu page with no title
Forum: Fixing WordPress
In reply to: How can I make the homepage title different from the navigation🙂 glad I could help 🙂
Forum: Fixing WordPress
In reply to: Long list of menu words appeared above header?that’s actually coming up as your “top nav”
Forum: Fixing WordPress
In reply to: How can I make the homepage title different from the navigationForum: Fixing WordPress
In reply to: How can I make the homepage title different from the navigationnot here, it’s too large, paste it to: wordpress.pastebin.com
and then paste the url it gives you here.
Forum: Hacks
In reply to: links forces httpif you start it with a / it shouldn’t strip it, but if you start it without the / then it will strip it and add http://
i.e. /Users/Mac will not change
but Users/Mac willForum: Hacks
In reply to: Stupid problem with adim.php?page=if ($_REQUEST['action'] == 'save') { // save the form echo '<meta http-equiv="refresh" content="0;url=admin.php?page=edit_listings&saved=true">'; die(); }of course $_REQUEST[‘action’] is what I set when I submit a form, you can adjust it accordingly. Additionally, I pass saved=true so I can display a div that says “Saved successfully” on the page, but that isn’t necessary
Forum: Fixing WordPress
In reply to: Hemingway Theme-Number of posts on home pagedoes your theme have a settings section also that may be over riding the setting in settings->Reading?
Forum: Fixing WordPress
In reply to: How can I make the homepage title different from the navigationdid you put that code between the <? and ?>