xclamation
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Parallax Content Slider] Slider Images not loading…?Reviewed and rated… ??
Thanks again!
Forum: Plugins
In reply to: [WP Parallax Content Slider] Slider Images not loading…?Hi wp-maverick,
I’ve just updated to version 0.9.1 and it’s working great again now.
Thanks for your time!
Forum: Plugins
In reply to: [WP Parallax Content Slider] Slider Images not loading…?Just a further note. We’ve also just realised that the slider is also not displaying the correct post titles and simply displays “From the Director” for each slides title…
Just done a little testing and found that if I deactivate, uninstall then re-install the plugin it appears to work again.
I recently moved my WordPress site from a local development machine to the live server so perhaps this is what caused the problem?
I’m getting this on one of my installations too. WordPress 3.4 and BackWPup Version 2.1.11.
Upon running the job from the ‘Jobs Overview’, the backup tries to start but I get a Black screen with no output or activity.
Any ideas?
Forum: Themes and Templates
In reply to: Need CSS to target Safari for MacThere are browser specific libraries already out there if you look on Google.
Not sure if you missed the point in my post though, in that the problem is because you have incorrectly used HTML (<span> should be used inside <p> tags) and this is not being interpreted correctly by Mac Safari.
Using the above code should fix your issue. Have you tried it yet?
Forum: Fixing WordPress
In reply to: function to disable plugin in custom pageHi,
This will depend on which plugin is being used as each plugin will add different ‘actions’ etc. You will need to see what actions your plugin is adding/using and remove them on specific pages as below:
if ( strstr( $_SERVER['REQUEST_URI'], 'anything.php' ) ){ // Remove Actions remove_action( 'wp_action_name', 'your_plugins_function_one' ); remove_action( 'wp_action_name', 'your_plugins_function_two' ); // Remove Scripts wp_dequeue_script( 'script_name_one' ); wp_dequeue_script( 'script_name_two' ); }
The above code would need to be placed before any instance of wp_head()
(should be ok in your functions.php file)
Forum: Themes and Templates
In reply to: Need CSS to target Safari for MacHi,
You cannot target specific systems/browsers with CSS alone. For this you would need JavaScript or PHP to detect them and then load the corresponding CSS file.
Try enclosing your copyright <span> in <p> tags, or even better, re-write it like below:
<p class="terms">? 2012 Andrea Mary Marshall</p>
and change the following line in your style.css file:
from:
#simple_footer_nav .terms { float:right; margin-top:10px; }
to:
p.terms { text-align:right; margin-top:10px; }
(you might not need the margin-top now also)Forum: Hacks
In reply to: shortcode in pluginsHi,
Can you post your plugin code?