Jared Atchison
Forum Replies Created
-
Notifications for replies is definitely on the radar, I have had multiple people request that ??
Can you post what the link came out to be? There is a good chance it was obsecured due to the escaping that happens.
I could probably ad a shortcode, such as [login-url], which would be replaced with a link to the site’s login page. Would that help?
Excellent, thanks for the update ??
@kevinvaughn – thanks for letting me know!
What host is the site that you are having trouble with on?
The plugin uses the WordPress mail function ( wp_mail() ), however some hosts do have problems with it. Do you receive other notifications such as commets/trackbacks?
Forum: Alpha/Beta/RC
In reply to: Admin menu doesn't expand/collapse in 3.3 beta 1. Why?Many people didn’t realize they could collapse the menus, so they would end up with
https://i55.tinypic.com/2ll29eh.jpgNow that’s fixed.
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] Infinite search wheelThanks scribu!
Originally I was actually looking at your usage example on trac ??
https://core.trac.www.ads-software.com/ticket/14666#comment:6
Much appreciated!
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] Infinite search wheelVery strange. So I tracked down line 1264 and it had to do with remove_menu_page which I was indeed using.
Once I commented out this
//add_action('admin_init', 'remove_admin_menus'); function remove_admin_menus(){ remove_menu_page('edit.php'); // Posts remove_menu_page('upload.php'); // Media remove_menu_page('link-manager.php'); // Links remove_menu_page('edit-comments.php'); // Comments remove_menu_page('tools.php'); // Tools }
and tried it again the searched worked without any issues.
Forum: Plugins
In reply to: [Plugin: Runners Log] Few suggestionsI’m at work so I can’t look it up – but I don’t think you need to echo the function, you should be able to just call it.
Also, try using the shortcode(s) in a page/post with the new release.
Forum: Plugins
In reply to: [Plugin: Runners Log] Few suggestionsYes, they are on the to-do list ??
Forum: Themes and Templates
In reply to: [Custom Fields] Howto hide custom fields when they are empty?sounds like you need
if(in_category('11')) { // your code above here }
Where 11 is your cat id
Forum: Themes and Templates
In reply to: How to change header on every page?Edit the header.php in your theme directory.
That gets used for every page.
Secondly you need to read up on WordPress themes a bit more ??
Forum: Themes and Templates
In reply to: Missing images and styleshhet<?php bloginfo('template_url');?>/images/yourimage.jpg
Forum: Themes and Templates
In reply to: Need help getting custom theme to workDo you have a working URL? (to the site not the files)
Forum: Themes and Templates
In reply to: Theme header modificationHere’ I’ll give you a code snippet for free…
Try something like
<title><?php if(is_home()){ bloginfo('name'); } else { wp_title('»', true, 'right'); ?> <?php bloginfo('name'); }?></title>
If it is the homepage it will show your Blogname, otherwise it will show ‘Pagename > Blogname’. Good for SEO ??
Forum: Themes and Templates
In reply to: wp_head() causes javascript errors.Works for me with no errors – FF 3.5 Mac