mdm
Forum Replies Created
-
Forum: Plugins
In reply to: [Google for WooCommerce] Google Add and listing keep LoadingHi there. I have similar problem.
I purchased the plugin then had to change the Google Merchant account. Now when I open the plugin it just resorts to loading.
Any way I can reset the connection? I don’t see a section for it.
Hey, yes please see here:
I didn’t create the user ‘Other’ but we have the normal user and a plugin for new user registrations. Neither has a user called ‘Other’.
Thanks for helping ??Hey there
If you look here, you will see what I mean. There is no other recorded user called ‘Other’, so confused.
Thanks for any help ??
Hi
Thanks for the response.
So I’ve set the plugin accordingly, like the screenshots. But the problem I have is – if I label the discount (inc. show as a coupon) say ‘% Discount’ and have 3 tiers (so 0-50 = 0 Discount, 51-100 = 10% Discount, 100+ = 15% Discount) – I want it to show the correct percentage discount.At the moment it shows % Discount with no relation to how much discount has been applied (other than a price change).
Hi there – thanks for the response.
So I’ve just applied the changes, and that’s definitely closer.
If you see the screenshot, it says ‘% Discount’. What I want it to say is ‘10% Discount’ or ‘5% Discount’ – depending on the discount rule.Is this possible?
Forum: Plugins
In reply to: [WooCommerce] Moving featured image and archive description in woocommerceI figured it out. The hooks did not work, so I located the section within the actual header file and referered to the category page in the php conditions.
Please feel free to delete this thread now resolved, rather than close, as it won’t be of any help to others. Thankyou for your time both ??
Forum: Plugins
In reply to: [WooCommerce] Moving featured image and archive description in woocommerceIt appears to be around this woocommerce_before_main_content
Forum: Plugins
In reply to: [WooCommerce] Moving featured image and archive description in woocommerceTHankyou for the response @eastofwest btw ?? I suspect it’s a hook which I haven’t found yet.
Forum: Plugins
In reply to: [WooCommerce] Moving featured image and archive description in woocommerceNo, please don’t. A week is not a while. And creating a new thread is just going to add to the mess.
I’ll try this shortly – I’m using a plumbing theme. I just want to move the category image so it’s the main image with description under that if present.
Forum: Plugins
In reply to: JCarousel -Please HelpAlso, if you browse the page in IE, you’ll notive a problem pops up. I’ve no idea how to rectify that, but it’s the ‘#’ character in the JQuery…
Forum: Plugins
In reply to: JCarousel -Please HelpI’m having the same problem, but your “finished” code unfortunately doesn’t work. Would someone mind taking a look please?
Header
<?php /** * @package WordPress * @subpackage Default_Theme */ ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> <head profile="https://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?></title> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <script type="text/javascript" src="https://www.enrapturedrecords.com/Enraptured_Records/wp-content/jquery/jquery.js"></script> <script type="text/javascript"> $(document).ready(function() { //Show Banner $(".main_image .desc").show(); //Show Banner $(".main_image .block").animate({ opacity: 0.85 }, 1 ); //Set Opacity //Click and Hover events for thumbnail list $(".image_thumb ul li:first").addClass('active'); $(".image_thumb ul li").click(function(){ //Set Variables var imgAlt = $(this).find('img').attr("alt"); //Get Alt Tag of Image var imgTitle = $(this).find('a').attr("href"); //Get Main Image URL var imgDesc = $(this).find('.block').html(); //Get HTML of block var imgDescHeight = $(".main_image").find('.block').height(); //Calculate height of block if ($(this).is(".active")) { //If it's already active, then... return false; // Don't click through } else { //Animate the Teaser $(".main_image .block").animate({ opacity: 0, marginBottom: -imgDescHeight }, 250 , function() { $(".main_image .block").html(imgDesc).animate({ opacity: 0.85, marginBottom: "0" }, 250 ); $(".main_image img").attr({ src: imgTitle , alt: imgAlt}); }); } $(".image_thumb ul li").removeClass('active'); //Remove class of 'active' on all lists $(this).addClass('active'); //add class of 'active' on this list only return false; }) .hover(function(){ $(this).addClass('hover'); }, function() { $(this).removeClass('hover'); }); //Toggle Teaser $("a.collapse").click(function(){ $(".main_image .block").slideToggle(); $("a.collapse").toggleClass("show"); }); });//Close Function </script> <link rel="stylesheet" href="https://www.enrapturedrecords.com/Enraptured_Records/wp-content/jquery/jcarousel/lib/jquery.jcarousel.css" type="text/css" media="screen" /> <link rel="stylesheet" href="https://www.enrapturedrecords.com/Enraptured_Records/wp-content/jquery/jcarousel/skins/tango/skin.css" type="text/css" media="screen" /> <link rel="stylesheet" href="https://www.enrapturedrecords.com/Enraptured_Records/wp-content/jquery/jcarousel/skins/ie7/skin.css" type="text/css" media="screen" /> <script type="text/javascript" src="https://www.enrapturedrecords.com/Enraptured_Records/wp-content/jquery/jcarousel/lib/jquery.jcarousel.pack.js"></script> <script type="text/javascript"> jQuery(document).ready(function() { jQuery('#mycarousel').jcarousel(); }); </script> <style type="text/css" media="screen"> <?php // Checks to see whether it needs a sidebar or not if ( empty($withcomments) && !is_single() ) { ?> #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg-<?php bloginfo('text_direction'); ?>.jpg") repeat-y top; border: none; } <?php } else { // No sidebar ?> #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbgwide.jpg") repeat-y top; border: none; } <?php } ?> </style> <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <div id="container"> <div id="logoNav"><center> <img src="https://www.enrapturedrecords.com/Enraptured_Records/wp-content/themes/enrapturedV2/images/logo.png"></center> <hr color="#000000" width="100%"> <?php get_search_form(); ?> <center>Site | Social | Shop</center> </div>
Page Code
<div id="old_releases"> <ul id="mycarousel" class="jcarousel-skin-tango"> <li><img src="https://static.flickr.com/66/199481236_dc98b5abb3_s.jpg" width="75" height="75" alt="" /></li> <li><img src="https://static.flickr.com/75/199481072_b4a0d09597_s.jpg" width="75" height="75" alt="" /></li> <li><img src="https://static.flickr.com/57/199481087_33ae73a8de_s.jpg" width="75" height="75" alt="" /></li> <li><img src="https://static.flickr.com/77/199481108_4359e6b971_s.jpg" width="75" height="75" alt="" /></li> <li><img src="https://static.flickr.com/58/199481143_3c148d9dd3_s.jpg" width="75" height="75" alt="" /></li> <li><img src="https://static.flickr.com/72/199481203_ad4cdcf109_s.jpg" width="75" height="75" alt="" /></li> <li><img src="https://static.flickr.com/58/199481218_264ce20da0_s.jpg" width="75" height="75" alt="" /></li> <li><img src="https://static.flickr.com/69/199481255_fdfe885f87_s.jpg" width="75" height="75" alt="" /></li> <li><img src="https://static.flickr.com/60/199480111_87d4cb3e38_s.jpg" width="75" height="75" alt="" /></li> <li><img src="https://static.flickr.com/70/229228324_08223b70fa_s.jpg" width="75" height="75" alt="" /></li> </ul> </div>
Any ideas? It’s always bulleted. Thing is, even when it wasn’t bulleted but working correctly, the arrows aren’t showing up, plus the widget itself doesn’t work…
Forum: Fixing WordPress
In reply to: Error on IE8 webpage related to jqueryIf I change the theme, it seems to work – the Flickr that is…
Forum: Fixing WordPress
In reply to: Error on IE8 webpage related to jqueryIt appears that this code is the conflict with the scrollbar:
filter:alpha(opacity=80);If I remove that, then the transparency goes but the scrollbar is fixed in IE. But I still get the error message with that Jquery code…
Forum: Fixing WordPress
In reply to: Error on IE8 webpage related to jqueryHi,
I have a problem with JQuery, and I can’t figure out what’s wrong with it.
Please see here:
https://hushhushlondon.com/front/Stick that into IE8 and it’ll come up with a message like below:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; Creative AutoUpdate v1.40.01; AskTB5.5)
Timestamp: Mon, 29 Mar 2010 01:16:20 UTCMessage: Object doesn’t support this property or method
Line: 166
Char: 6
Code: 0
URI: https://hushhushlondon.com/front/And the code it stages is:
jQuery(“img.flickr.square,img.flickr.thumbnail,img.flickr.small”).flightbox();Even if I deactivate the flickr plugin (which, the site worked before I installed it), the page still only shows half of it, the scrollbar won’t go down far enough….
Any ideas what this might be? I’ve been working on it for hours…
Cheers…
Forum: Themes and Templates
In reply to: footer and blog not working properwierdly the footer just ‘sorted itself out’. i was setting up a new account as a fix to see if it worked better after a refresh, then as i copy/pasted the code over, the footer just seemed to work…
now it’s the blog which won’t update. the page template i mean…
if you still need the footer code, let me know ??