ryanoryan
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] How to add custom attribute underneath title on Product PageIt’s ok. I think I’ve achieved what I want by reordering my excerpt/short description.
Forum: Plugins
In reply to: [WP Job Manager] Gravity Forms & Apply ButtonHi Mike,
Thanks for getting back to me.
On this link: https://themeforest.net/item/jobify-job-board-wordpress-theme/full_screen_preview/5247604
If you click into the 4th job and click Apply Now, it opens up into a nice little form. Is that possible to replicate easily using the Gravity Forms plugin?
Thanks,
Anthony
Where exactly do you put the above code?
This plugin isn’t very useful without some documentation as to where you need to insert the code the make it work?
Is this only meant to be used with the Jobify theme?
Forum: Plugins
In reply to: [WP Job Manager] Completely remove Job ManagerLooks like it was plugin conflict.
Once i deactivated “Multiple Category Selection Widget” then deactivate/reactivated WP Job Manager, all worked ok.
Thanks for your help. You can mark this resolved.
Forum: Plugins
In reply to: [WP Job Manager] Completely remove Job ManagerUnfortunately neither of those have worked.
I get all my old job listings when I reinstall the plugin and none of the links to the job pages work.
Any idea what could be causing this? Is there anything I need to add to rewrite rules on the .htaccess files?
Forum: Plugins
In reply to: [Twitter Widget Pro] Twitter Widget stopped updatingSame issue here. Plugin is no longer updating on my client sites.
Has been down for nearly week. Any sign of a fix or even update on the issue?Forum: Plugins
In reply to: [Plugin: Widget Logic] Help with conditional statement! (is_page(‘5’) )
Forum: Plugins
In reply to: [Plugin: Widget Logic] Help with conditional statementYou just add ! before hand.
e.g. ! (is_page(‘5’)
Forum: Plugins
In reply to: [Plugin: Widget Logic] Help with conditional statementAh yes, thank you. had to change it slightly to work but you put me on the right track, working code:
global $post; return ! (is_page(‘5’) || ($post->post_parent==”5″) || is_single() && in_category( ‘7’ )) ;
Thanks again
Forum: Plugins
In reply to: Widget Logic HelpFixed it, may be of use to someone else:
global $post; return !( is_page(array(5,47,108)) || in_array($post->post_parent, array(5,47,108)) ) ;
Forum: Plugins
In reply to: Widget Logic HelpApologies, only coming back to this now.
It now reads:
global $post; !( is_page(array(5,47,108)) || in_array($post->post_parent, array(5,47,108)) )
But the menu as not working on any page.
Any ideas?
Thanks
Forum: Fixing WordPress
In reply to: Trouble moving siteThe only difference I’ve spotted is that the httpdocs folder contains a folder with the sitename on it. This isn’t the case on my other sites.
I think this is due to that folder being specified in the “web hosting” section on my hosting package. I’ve changed that now to just be the root like my other sites, but still having the same problem.
Is there something else I need to change?