oliverrose
Forum Replies Created
-
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Include HTML in a review through importI still see “The uploaded file is not a valid CSV file” even after adding that and modifying it to allow tags (amongst others) as below:
add_filter( 'preprocess_comment', 'wpse_340526_preprocess_comment' ); function wpse_340526_preprocess_comment( $commentdata ) { if( 'wpse_response' === $commentdata['comment_type'] ){ global $allowedtags; $allowedtags['pre'] = array('class'=>array()); $allowedtags['h2'] = array(); $allowedtags['h3'] = array(); $allowedtags['h4'] = array(); $allowedtags['h5'] = array(); $allowedtags['h6'] = array(); $allowedtags['ul'] = array(); $allowedtags['ol'] = array(); $allowedtags['li'] = array(); $allowedtags['a'] = array(); $allowedtags['b'] = array(); $allowedtags['br'] = array(); } return $commentdata; }
Any further ideas?
Forum: Plugins
In reply to: [Admin Custom Login] Custom CSS Not Working?Brilliant, it works. And how about changing the colour of that text? !important gets overwritten by the existing #ffffff !important
Forum: Plugins
In reply to: [Admin Custom Login] Custom CSS Not Working?Hi, screen shot:
https://www.dropbox.com/s/5ff9tw1e3zi2efb/Screen%20Shot%202016-11-17%20at%2016.43.52.png?dl=0For example I would like to change the font colour where it says “You can now save time spent logging….” or the font size at the bottom left where it says “< Back to..” in small white writing.
Thanks
It works! Thank you so much. What a great plugin.
Hi, thanks for the reply. Sorry again, I still can’t get it going. You can see the existing pop up on this page:
https://www.digitalpeanut.co.uk/
It’ll pop up after a few secondsThe link I tried on another page is:
<span id=”sgcolorbox” class=”colorbox6 sg-popup-content sg-animated fadeIn”>Test</span>In the Popup settings I have the following:
Overlay custom class:
sg-popup-overlayContent custom class:
sg-popup-contentWhere am I going wrong? I tried using exactly your example (copy and pasted):
<span class=”sg-popup-id-your popup id number”>Test</span>but that didn’t work either
Thank you for your help with this, much appreciated. The pop up is great otherwise!
Sorry but I can’t get it to work. I’ve created this link:
<span class=”sg-popup-content”>Test</span>
and another:
This class (sg-popup-content) is in Popup Builder > Edit Popup > Overlay custom class:
What am I doing wrong?