WooExpert
Forum Replies Created
-
Thanks WebbieWorks! for sharing this issue.
Its pretty clear from the warning which you shared that your theme and this plugin is conflicting as they are using some similar framework at back-end.
It would be great if you can share some dropbox link of your present theme so we can fix this confliction and release new update. You can find our email at our official site.
Thanks!
Thanks for trying our plugin.
Right now we have functionality to display contact tab on right or left. Hope fully will introduce this functionality as well in our next version.
Finally in our latest version now you can display a single WP contact slider on every page just by enabling a check-box on slider settings page.
I have tested this plugin on several sites. Might possible that some plugin might conflicting.
Have you tried deactivating some other plugins and then activating WP Contact Slider just to figure out if some thing is conflicting?
For this you need little CSS tweak in WP-contact-slider > css > style.css on line 33;
a#wpcs_handle { top: 25% !important; width: 170px !important; overflow: hidden; }
Here change the percentage value of ‘top’ to some thing like 75% as following;
a#wpcs_handle { top: 75% !important; width: 170px !important; overflow: hidden; }
And you are done!
Have tested latest version on several sites. Not getting any such error.
Try installing it again after deleting it.It might be possible that you might be installing the plugin on the instance when plugin was being updated.
Sorry for late reply was on vacation. No you can’t use border radius over here.
Sorry for late reply was on vacation. We have updated this plugin and have added option to display single WP Contact Slider on every page just by checking option to Display on all pages from slider settings window.
To display contact tap in center of your page right now we don’t have settings for this option. What you can do is change some styles in plugin’s style.css. There you will find following CSS around line 32;
a#wpcs_handle { top: 25% !important; width: 170px !important; overflow: hidden; }
Here just change this top percentage to some value around 50% and you are done.
Hope this might help.
Sorry For late reply. Was on vacations.
Have update plugin to version 1.3. Now we have added option to display a single contact slider on every page.
Sorry for late reply. Was on long vacation.
Yp sure you can add your custom class in following file;
your-Plugin-directory/wp-contact-slider/inc/wpcs_frontend_functions.php and add your custom class in following in two places on line number 109 and 290 as following;
class="wpcs-slide-out-div your-custom-class"
and you are done.NOTE
You will always need to make this edit whenever plugin is going to update.Sorry for late response. I was on vacation. Can you share your page link over here (on which you have selected WP Contact Slider) so that we can check it for you.
Forum: Plugins
In reply to: [WP PDF Generator] WP pdf generator Error The service is unavailable.Sorry for inconvenience. Now every thing is fixed!
Sure you can do that. You just need to add some jQuery for that.
jQuery(document).ready(function($){ $triggered_times = 0; $(window).on('scroll', function() { var y_scroll_pos = window.pageYOffset; var scroll_pos_test = 150; // set to whatever you want it to be if(y_scroll_pos > scroll_pos_test && $triggered_times == 0 ) { $('#wpcs_handle').click(); $triggered_times = 1; } }); })
Just change the
scroll_pos_test
value as per your requirement and you are done.Sure you can move it down with just some CSS.
Add the following CSS at the bottom of your theme’s
style.css
and you are done..wpcs-slide-out-div { top: 20% !important; }
You can change this percentage value as per your requirement. Hopefully Will add this feature in back-end settings in our next release.
Thanks CK! for using our plugin. Let us know if you have any issue or find any bug.