koolkatwebdesigns
Forum Replies Created
-
Forum: Plugins
In reply to: [Jigoshop eCommerce] Product Order and Products per PageUnfortunately, it is not working. Now I just see all products rather than the products for the category.
Forum: Plugins
In reply to: [Jigoshop eCommerce] migration issuesI have tried this on two sites and both quit migrating orders at 1133 orders and won’t continue. Both sites are staging sites (clones of the original) but I cannot see migrating the live site until the migration issues are resolved.
Forum: Plugins
In reply to: [TAB SLIDE] I would like to be added as an authorHi kikifresh (Gina). That is exactly why I wanted to be an author on this plugin. Its not been updated in something like 2 years. While you would normally not want to do this in an actively maintained plugin as you would lose your changes when the plugin updates, you can modify the ts.css file…
around line 67 look for #tab_title_wrap and make sure the code looks like this:
#tab_title_wrap {
background-color: #3f3299;
color: #fff;
display:block;
font-family: inherit;
font-size: 16px;
font-weight:bold;
letter-spacing: 1px;
margin-left: 1px;
overflow: visible;
position: relative;
-webkit-transform: rotate(90deg); /* Saf3.1+, Chrome */
-moz-transform: rotate(90deg); /* FF3.5+ */
-o-transform: rotate(90deg); /* Opera 10.5 */
transform: rotate(90deg);
zoom: 1;
}The above adds a missing “rotate” which should work in most modern browsers. However, if you are using an old browser like Ie8, this will not work
Thanks for your prompt answer. Just to be clear it is not common issue with display none – I already worked around that by using height 0 and overflow:hidden. When I debug my ipad mini, I actually see 2x in the img src attribute.
thanks.
Forum: Plugins
In reply to: [Regenerate Thumbnails] Failure after upgrading WP to 3.6I don’t know if this will help you but dreamhost suggested I install this plugin https://github.com/getsource/default-to-gd which forces WP to use the GD library instead of Imagick. It seems to have solved this issue for me as well as an image corruption issue.
Forum: Plugins
In reply to: [Posts 2 Posts] Post to User IssueI resolved this so I am posting in case someone else has this issue:
change:
‘connected_items’ => $post
to
‘connected_items’ => $query->post->IDForum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] upgrade from 1.0.3 failsI wanted to provide new info. I added the debug to my config and I see:
Undefined index: wp_the_query in C:\inetpub\wwwroot\SmartEnergy\wp-includes\query.php on line 107 Fatal error: Call to undefined function get_front_page_template() in C:\inetpub\wwwroot\SmartEnergy\wp-includes\template-loader.php on line 26
thanks.
Forum: Plugins
In reply to: Default timestamp on new poststhis has been resolved by setting post_date and post_date_gmt
I have it working now. I needed wmode=window to get the jwplayer to always be on top.
I am having trouble getting this to work in ie7 and ie8. Any suggestions?
Thanks.
Ugh – the post keeps removing my link inbetween the <p> tags but there should be an href=”#”
Correction – before submit button add:
p class=”sendbtn”></p>
And here is the CSS I use for the sendbtn:
p.sendbtn a {
background:url(“images/send-btn.jpg”) repeat scroll 0 0 transparent;
float:left;
height:35px;
width:132px;
}
#maincontent p.sendbtn a:hover, #maincontent p.sendbtn a:focus {
background-position:0 -35px;
}Here is a solution I used on this page:
In contact form settings before the submit button I add:
<p class=”sendbtn”></p>
In my styles.css I add:
input.wpcf7-submit {
display:none;
}
in my header.php file I use this jQuery:
jQuery(“.wpcf7-form p.sendbtn a”).click(function() {
jQuery(“.wpcf7-submit”).click();
return false;
});