inetwerx
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Attachment IssueThanks Mike. That solved it. If someone has found a problem to the endless ajax loader please post. It now sends the message+attachment, but doesn’t give the success msg.
Forum: Plugins
In reply to: [Raw HTML] [Plugin: Raw HTML] Not working in WP 3.01, or user error?Similar problem in 3.2
Forum: Plugins
In reply to: W3 Total Cache vs wp supercache?peel, this discussion might be useful:
http://wordpress.org/support/topic/high-server-load-w3-total-cache-or-wp-super-cache
Forum: Plugins
In reply to: [Plugin: Calendar] Error Message when trying to add an event@nssa-nsca: Awesome! All I did was find and replace WP_CALENDAR_TABLE with WP_CALENDAR and event_link TEXT DEFAULT ” with event_link TEXT. Then enabled this plugin and it worked. If you’re not accustomed to mysql, do this before enabling the plugin. Otherwise, go through phpmyadmin or a similar mysql admin tool and delete the databases present in there.
cristian@kaktusmarketing.com for more questions.
Forum: Plugins
In reply to: Contact Form 7 – not sending email when email field has yahoo/hotmail addressThanks for the solution. It worked perfectly. Thanks so much!!!
Forum: Fixing WordPress
In reply to: How to change title dynamically?All in one SEO plugin allows you to choose the page title of any individual page. Not sure if this is what you’re looking for.
Forum: Plugins
In reply to: [Plugin: WP e-Commerce] Changing product number (id)Beautiful. wannaplay2009 took the time to tell us he solved the problem, but didn’t bother to write the solution.
…
Forum: Fixing WordPress
In reply to: [Plugin: WP e-Commerce] Paypal Shipping Not workingcorrynews12
in regards to On WP-ecommerce: friendlier people, though my thumbnails are not showing, and I can’t find a way to fix it.
try this ( i got it to work on mine):
Forum: Plugins
In reply to: wp E-commerce product images not shown – https is added to urlUNBELIEVABLE! IT WORKS. THANK YOU THANK YOU THANK YOU, THANK YOU VERY MUCH jvs. thanks for supporting this community.
Forum: Themes and Templates
In reply to: Include jQuery in header.php… PLEASE HELP ?!thanks to everyone that posted. you guys really helped me.well done!!!
Forum: Themes and Templates
In reply to: Include jQuery in header.php… PLEASE HELP ?!i have followed this threat today and got jquery to work in wordpress. this is my header.php code
<?php wp_enqueue_script('jquery'); ?> <?php wp_head(); ?> <script type="text/javascript" src="<?php bloginfo("template_directory"); ?>/js/menu.js"></script> </head>my javaScript file looks like this:
jQuery(document).ready(function() { jQuery("ul.nav li").hover(function() { //On hover... var thumbOver = jQuery(this).find("img").attr("src"); //Get image url and assign it to 'thumbOver' //Set a background image(thumbOver) on the <a> tag - Set position to bottom jQuery(this).find("a.thumb").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'}); //Animate the image to 0 opacity (fade it out) jQuery(this).find("span").stop().animate({opacity: 0}, 300); } , function() { //on hover out... //Animate the image back to 100% opacity (fade it back in) jQuery(this).find("span").stop().animate({opacity: 1}, 300); }); });–> i replaced every $ in my javascript file with jQuery and got it to work. I’m not sure how correctly done it is, but it works.