samhagin
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Float] Disable from some pages?you can manually add the code below to the page you wish to remove it from
<script> jQuery(document).ready(function() { jQuery('#wp-float-widget').remove() }); </script>
where wp-float-widget is the exact ID for the floating item on the page. if you are unable to find the ID, provide a link to the page with WP Float and I can help you.
Forum: Plugins
In reply to: [WP Float] Stationary positioningyou can try using this code
<script> jQuery(document).ready(function(){ jQuery('#wp-float-post-19').css('position','absolute'); }); </script>
please make sure you change wp-float-post-19 to the id for the wp float item. you can find the id by checking the HTML source.
if you are unable to find it, you can reply with the link to the page with the item
Forum: Fixing WordPress
In reply to: WordPress 3.5 – Error on Line 944In my case, just re-installing the core WordPress files resolved the issue. It is possible some files were not updated during the automatic upgrade process and manually re-uploading the 3.5 files after downloading and unzipping from https://www.ads-software.com/download/ fixed it.
Forum: Plugins
In reply to: [WP Float] Only showing on home pagewhat options are you using with Settings >> WP Float Options? can you provide the exact HTML or text as well as the settings you are using so I can test them on my end?
Forum: Plugins
In reply to: [WP Float] Only showing on home pageMost likely your theme does not have widget support on pages and posts. You should try using the Settings >> WP Float Options instead. You can also use the shortcode
Forum: Plugins
In reply to: [WP Float] Shortcodes?That is also a shortcode and I don’t think you can use a shortcode within a shortcode such as
[wp_float]
[woocommerce cart]
[/wp_float]Instead you should look for the HTML for the cart then add it with the wp_float shortcode
Forum: Plugins
In reply to: [WP Float] Only showing on home pagecan you let me know the settings you are using? are you using the widget, shortcode or settings >> wp float options ?
Forum: Plugins
In reply to: [WP Float] Shortcodes?May I please know the exact code you are using? You can use the shortcode icon if you do not know the exact syntax to use as described at https://webwiki.co/wp-float
Forum: Plugins
In reply to: [WP Float] Messes up header while loadingwhat version of firefox are you using? I was unable to replicate this with version 14.0.1
Forum: Plugins
In reply to: [WP Float] [Plugin: WP Float] Version 1.3 issuesif you want it to display on those pages only, I suggest using the shortcode instead. simply insert the shortcode into each of those pages. you can instructions on how to use the shortcode at https://webwiki.co/wp-float/
Forum: Plugins
In reply to: [WP Float] Adsense ?Simply copy the code provided by Google then paste it either into the widget or the text editor under Settings >> WP Float. You can also use the shortcode, you can find documentation on this at https://webwiki.co/wp-float/
Forum: Plugins
In reply to: [WP Float] Hide on small screensGreat, thanks for posting this.
Forum: Fixing WordPress
In reply to: WordPress 3.5 upgrade breaks all Ajax features…I upgraded to 3.5 and did not have any issues. You should disable all your plugins and also use try switching to either twentytwelve theme to see if that resolves your issue. If disabling plugins resolves the issue, you should active each plugin one at a time to find the culprit.
Forum: Plugins
In reply to: [WP Float] Need the window to stop floatingBy default,whether FIXED or FLOAT, the item is always visible, if however you want it to stay at one place, you can add this code after the shortcode in HTML mode
<script> jQuery(document).ready(function(){ jQuery('#wp-float-post-19').css('position','absolute'); }); </script>
wp-float-post-19 is the unique id assign to the item
Forum: Plugins
In reply to: [WP Float] Centre hovertry checking the option ‘set alignment from center’ and left distance from left/right blank