zoranc
Forum Replies Created
-
Forum: Reviews
In reply to: [TAB SLIDE] Old-fashioned style and too complicated to editHey Csign. I took your criticism into consideration while I was working on the v1.4 and I gave the plugin the flexibility you were after by implementing an option for Tab Slide to be largely CSS driven so users like yourself can hack away. I would be interested to hear any thoughts you may have on the new version of the plugin.
Thanks!
Forum: Plugins
In reply to: [TAB SLIDE] tab label not showing correct in firefoxI’ve cleaned up quite a bit of the code that sizes the tabs in v1.4. Try updating and see if you are still experiencing these kinds of issues
let me know if this solved your issue
Forum: Plugins
In reply to: [TAB SLIDE] Not working in WP 3.5Did you get this error upon install…or after you changed settings? It could be that one of the settings you tried to define is causing this error. Try resetting all the options, and then try using another template(ie subscribe vs widget area) to make sure this is not widget related.
Please do let me know what you find
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] Could not make tab slide to work on my siteI updated the version 1.33 with the correct code ~8hrs ago…(without updating the version number this was supposed to be the 1.33 update)
sorry for the confusion… removing and installing from scratch now should take care of this bug
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] Could not make tab slide to work on my siteTry removing the plugin completely and installing from scratch ( The recent update should be fully in effect now)
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] gravity form within tab slideok scratch that last message….I just updated the plugin with the proper code so remove it completely and then reinstall and it should do the trick this time around
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] gravity form within tab slidefor some reason your configuration is still trying to include the url starting with a slash…
edit your tab-slide.php – scroll all the way to the end and replace this bit of code:
function get_contents() { global $window_url; ?><div id="tab_slide_include" style="display: none"><?php if (substr($window_url, 0, 7) == 'https://') { include_once(substr($window_url, strlen(get_site_url()))); } else { include_once(rtrim($window_url, "/")); } ?></div><?php //ob_get_clean(); }
with this
function get_contents() { ?><div id="tab_slide_include" style="display: none"> <?php include_once("wp-content/plugins/tab-slide/templates/Widget.php"); ?></div><?php }
this should set the include url to this widget url without the slash..(btw you won’t be able to switch to a different template via the dashboard tab slide settings while this code is in place)
let me know if this worked as it will give me an idea on how to troubleshoot this further
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] gravity form within tab slideWhat is the error you are getting this time around?
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] Different Tab ContentsI’ve been setting up the plugin to eventually do this but it still requires quite a bit of work and I am chipping away at all of this a little bit at a time.
The new version I pushed out today deals with the include exclude limitations you mentioned
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] gravity form within tab slideFor some reason there is a trailing slash in your include path …I’ve pushed out a new update to make sure that the path used is pretreated for this case scenarios
let me know if 1.33 works for you
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] tab label does not show in IElightgray will also work
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] tab label does not show in IEusing LIGHT GRAY as color will not work for background use #D3D3D3 instead
the permissions are ok the GET request is working
I’m still looking into the side tab text in internet explorer
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] tab label does not show in IEFor some reason it looks like the header css background is interfering with the plugin setting the background to none which is why the tab slide contents is see through
let me know what happens when you switch to the jQuery method I mentioned in the previous post
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] tab label does not show in IEit looks like something might be messed up with your permissions. check the permissions for https://www.businesscreditgenius.com/wp-content/plugins/tab-slide/templates/Widget.php
Go to Tab slide options->Advanced tab and use the jQuery include method
see if you can do a GET request for that page on initial loadForum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] Activate slider from a separate buttonPerhaps using jQuery trigger would do the trick?
you can have this in a js file that is included via your theme’s functions.php