wattsyourwebsite
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Delete Expired Job Listings not deletingHi Richard,
I configured it for 0 days.
I checked the Expired jobs on the day I posted to this forum and they weren’t deleted (or moved to Trash).
Today when I logged in I can see they have moved to Trash.
Is there any way to have it completed deleted automatically?
Regards
TaniaForum: Plugins
In reply to: [W3 Total Cache] Images not loadingI am experiencing the same problem so would like to know the solution.
Mine only occurs when I am logged in as admin.- This reply was modified 8 years ago by wattsyourwebsite. Reason: Want to be notified
I found a work around – set the number of days to expire (from 0) to say 365.
I found it worked when I rename the column title to post_title.
Hi Mujeebur
The same problem exists. Product Name is blank
🙁I am getting the same error. It used to work fine. Any resolution?
Forum: Plugins
In reply to: [Backup & Restore Dropbox] How can I kill the cron task?This plugin was an absolute nightmare for us. Being on shared hosting as most WordPress installations are, this plugin caused the entire server to shut down.
We finally managed to delete the plugin and all problems. I will not got anywhere near this plugin ever again.
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Correct/Incorrect not workingHi Ron,
I managed to get it working. Firstly I rolled back to WordPress Version 4.3.3
Then I examined the source code around the list of options and found extraneous <p> and
marks. They were not there before and you could see extra space around each “answer option”.So in the following file:
\wp-pro-quiz\lib\view\WpProQuiz_View_FrontQuiz.phpI removed the extra lines around Lines 922-930.
This solved my problem instantly.Hope it helps you!
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Quiz does not startWhen the cursor hovers over the button, it jumps around.
Add this CSS and it should fix the problem:.wpProQuiz_button, .wpProQuiz_button:hover { float: right!important; }Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] [yith_wcwl_wishlist] returns empty pageNo unfortunately I cant activate debug as this is a live site and there is no staging environment.
If you visit http://www.ecali.com.au and add an item to the Wishlist.
Then go to http://www.ecali.com.au/saved-items/ you will see what happens.Everything stops at [yith_wcwl_wishlist]
Tania
Forum: Plugins
In reply to: [Wp-Pro-Quiz] How to stop video when user clicks NEXTFollow my steps 1) and 2).
For example if you create a file in your theme calledmyscript.js
and pop the code from my step 2) into that file.
Then in your functions.php add this code:function wpb_adding_scripts() { wp_register_script('froogaloop2_script', 'https://f.vimeocdn.com/js/froogaloop2.min.js', array('jquery'),'2', true); wp_enqueue_script('froogaloop2_script'); wp_register_script('robhartley_script', get_stylesheet_directory_uri().'/myscript.js', array('jquery'),'1.0', true); wp_enqueue_script('robhartley_script'); } add_action( 'wp_enqueue_scripts', 'wpb_adding_scripts' );Hope this helps!
Forum: Plugins
In reply to: [Portfolio Gallery - Photo Gallery] Portrait iPhone view of Gallery disappearNo. I have tested this with the TwentyFifteen WordPress theme and the same problem occurs.
Ok have submitted a support email.
Thanks.Forum: Plugins
In reply to: [Portfolio Gallery - Photo Gallery] Portrait iPhone view of Gallery disappearI am running the latest version 2.0.2
Forum: Plugins
In reply to: [Wp-Pro-Quiz] How to stop video when user clicks NEXTAre you still needing help rob hartley.
Forum: Plugins
In reply to: [Wp-Pro-Quiz] How to stop video when user clicks NEXTI solved this problem with some jQuery.
1. Embed the video and give the iframe a unique id (in my example below, it is myplayerid). e.g.
<iframe id="myplayerid" src="https://player.vimeo.com/video/146619957?api=1&player_id=vplayer1" width="845" height="475" frameborder="0" allowfullscreen="allowfullscreen"></iframe>2. Create a .js file to include in your WordPress header.
Use the WP Pro Quiz id of your quiz.
In my example below, it is wpProQuiz_2(function ($) { var iframe = $('#myplayerid')[0]; var player = $f(iframe); $('#wpProQuiz_2 input[name="startQuiz"]').bind('click', function() { player.api('pause'); }); })(jQuery);Hope this helps.