samhagin
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Float] How to add 2 sideyou should use the widget ( Appearance >> Widget ) and you should be able to add a banner to either side of your page. If you need assistance, refer to https://wpaid.net/wp-float/
Forum: Plugins
In reply to: [WP Float] Stationary positioningwhat is the link to the page using wp float?
Forum: Plugins
In reply to: [WP Float] [WP Float] Only appears on top, moving them down belowCan you provide a link to the page with the issue? Also, provide the settings being used with wp float.
Forum: Plugins
In reply to: [WP Float] Disable/Hide on mobile versionrefer to https://www.ads-software.com/support/topic/hide-on-small-screens?replies=4 for assistance
Forum: Plugins
In reply to: [WP Float] Ca not be fixed?there are two ids for any wp float item and the one you shoud use is 967-wpf-id , you can see this when you check the source code for the page so the code will be
<script> jQuery(document).ready(function(){ jQuery('#967-wpf-id').css('position','absolute'); }); </script>
Forum: Plugins
In reply to: [WP Float] allowing shortcode within the wp-floatNot sure if it will work but you can try
[wp_float]
[other_shortcode]
[/wp_float]where [other-shortcode] is the shortcode that you want to use with wp float, also refer to the documentation at https://webwiki.co/wp-float/ on how to use the shortcode
Forum: Plugins
In reply to: [WP Float] Ca not be fixed?Are you trying to make the image static? If so, refer to this post https://www.ads-software.com/support/topic/stationary-positioning?replies=2
Fixed means it stays visible on the page at all times but does not float.
Forum: Plugins
In reply to: [WP Float] TranslationI checked https://hipscar.com/fr/ and I see the WP Float text you are using with was translated to French “promo de mars…”. Are you still having issues?
Forum: Plugins
In reply to: [WP Float] trying to get google translate code to floatCan you provide the URL for the site with the issue? If you want the item to be static and not move with the page as the user scrolls, use the code below:
<script> jQuery(document).ready(function(){ jQuery('#google_translate_element').css('position','absolute'); }); </script>
Forum: Plugins
In reply to: [WP Float] trying to get google translate code to floatif you are using wp float options under settings in wp-admin, make sure you enter the code in text and not visual mode. Also, what is the code supposed to show, i tried adding that on a test site and that displays nothing since the code is just a div without content
Forum: Plugins
In reply to: [WP Float] show on Post page but not Home page?The issue may be due to the theme you are currently using. I tested WP Float with a bunch of themes and checking “Show on Posts” should only work on posts. You can try using the widget instead to see if that works for you if you are currently using Settings >> WP Float Options or vice versa
Forum: Plugins
In reply to: [WP Float] Messes up header while loadingtry applying the fix in the last reply of this forum thread https://webwiki.co/forum/topic/4/wp-float-updated-to-16/ , I will include the fix in the next plugin update
Forum: Plugins
In reply to: [WP Float] Disable from some pages?try using this in HTML mode for the post you do not want it to show on
jQuery(document).ready(function() { jQuery('.fancybox-iframe').remove() });
Forum: Plugins
In reply to: [WP Float] Disable from some pages?it is not clear as to what you wish to remove from the page, what item is being used with WP Float on https://www.brycerafflesound.com/contactform/, it is the “contact us” button ? also which option did you use to add the button, did you use widget, shortcode or settings >> wp float options ?
Forum: Plugins
In reply to: [WP Float] Disable from some pages?from the source of that page you have this
<div id="586-wpf"> <a class="fancybox-iframe{scrolling:no, width:100, height:100}" href="https://www.brycerafflesound.com/contactform/"><img alt="" src="https://brycerafflesound.com/images/Contact-b.png" width="40" height="140" /></a> </div>
so the id is 586-wpf, the code will then be
<script> jQuery(document).ready(function() { jQuery('#586-wpf').remove() }); </script>
simply put that in the post/page in HTML/text mode , not visual. visual mode will most likely break it