Digital experiences for all disciplines
Forum Replies Created
-
-
Hi David!
Done. Please check it out: http://monroedesign.se/
Hi!
Thanx! Almost. I put 1200px instead of 1024px and that brings out the hamburger but it’s misplaced in the bottom of nav. I would love for it to stay in the top right corner. Please see attached images.
<3
A
Attachments:
You must be logged in to view attached files.Hi,
That makes it look terrible, I’m afraid. Please see image.
Attachments:
You must be logged in to view attached files.What’s the CSS for making nav going hamburger below 1200 px?
Hi, yepp. Not working.
Attachments:
You must be logged in to view attached files.Ah! Cool! Almost fixed! Could we make it two columns? The thumbs are so big now.
🙂Hi David!
Sorry, I can’t get that to work.
Is it something I’ve done by mistake in the Simple Image Sizes plugin? Please see screen grabs of my settings there.
<3
Attachments:
You must be logged in to view attached files.July 27, 2015 at 10:39 am in reply to: WooCommerce single product shows fullwidth product image after update #197986Ah! GREAT Mohammad! Perfect. Thank you very much!
<3
July 24, 2015 at 6:19 pm in reply to: WooCommerce single product shows fullwidth product image after update #197528Hi!
That CSS:
.woocommerce div.product > .entry-title {
display: none;
}just removed both product titles. I would like to keep the bold product title on the right. When I removed that CSS, the titles were still gone and I’m wondering if it has anything to do with the changes made to content-single-product.php:
We replaced:
<div class=”summary-top clearfix”><div itemprop=”offers” itemscope itemtype=”http://schema.org/Offer”>
with:
<div class=”summary-top clearfix”>
<div class=”entry-title” itemprop=”name”><h1><?php the_title(); ?></h1></div><div itemprop=”offers” itemscope itemtype=”http://schema.org/Offer”>
I have serious problem with the WooCommerce translations via WPML after updating theme, Woo and WPML too by the way. But that’s a different problem that I’m trying to get support from WPML about. All I did was to edit product description in Swedish for the diver and then updating the English product description of it. ALL variations on that English version of the product then just disappeared. WPML doesn’t seem to know why this happens to my site.
July 22, 2015 at 1:02 pm in reply to: WooCommerce single product shows fullwidth product image after update #196681This reply has been marked as private.July 22, 2015 at 1:00 pm in reply to: WooCommerce single product shows fullwidth product image after update #196678But it is not. I have two titles on each product now. I don’t want the left one to show.
July 22, 2015 at 12:48 pm in reply to: WooCommerce single product shows fullwidth product image after update #196673Hi again!
Now the product title shows twice: http://monroedesign.se/shop-vaggdekor/vindlov/
I have this css for it but the unwanted title on the left side is still there now, after updating the theme.
.woocommerce div.product .entry-title {
display: block;
margin-bottom: 40px;
}July 22, 2015 at 12:04 pm in reply to: WooCommerce single product shows fullwidth product image after update #196651Thank you!
I still don’t get what I did wrong but I see what it is supposed to be like now. Sorry for bugging you about it like this, but I have to understand it so that I can make updates correctly by myself.
Thanks for great help as always!
<3
July 20, 2015 at 5:44 pm in reply to: WooCommerce single product shows fullwidth product image after update #196190I’m confused. That line:
<div class=”entry-title” itemprop=”name”><h1><?php the_title(); ?></h1></div>
is already below:
<div class=”summary-top clearfix”>
Could you please give me the complete part of the text that need to be exchanged with what complete part of text?
July 20, 2015 at 4:39 pm in reply to: WooCommerce single product shows fullwidth product image after update #196144OK. Thanx. I removed the old custom code from content-single-product.php. Please tell me how I make the product title H1 placed above the body text on the right. Please see attached image of this.
Here are my old changes regarding this:
CSS:
.woocommerce div.product .entry-title {
display: block;
margin-bottom: 40px;
}2) Woocommerce>content-single-product.php replace:
<div itemscope itemtype=”http://schema.org/Product” id=”product-<?php the_ID(); ?>” <?php post_class(); ?>><div class=”entry-title” itemprop=”name”><?php the_title(); ?></div>
<?php
/**
* woocommerce_show_product_images hook
*
* @hooked woocommerce_show_product_sale_flash – 10
* @hooked woocommerce_show_product_images – 20
*/
do_action( ‘woocommerce_before_single_product_summary’ );
?><div class=”summary entry-summary”>
<div class=”summary-top clearfix”>
<div itemprop=”offers” itemscope itemtype=”http://schema.org/Offer”>
<p itemprop=”price” class=”price”><?php echo $product->get_price_html(); ?></p>
<meta itemprop=”priceCurrency” content=”<?php echo get_woocommerce_currency(); ?>” />
<?php if (!$catalog_mode) { ?><link itemprop=”availability” href=”http://schema.org/<?php echo $product->is_in_stock() ? ‘InStock’ : ‘OutOfStock’; ?>” /><?php } ?>
</div>
with
<div itemscope itemtype=”http://schema.org/Product” id=”product-<?php the_ID(); ?>” <?php post_class(); ?>><?php
/**
* woocommerce_show_product_images hook
*
* @hooked woocommerce_show_product_sale_flash – 10
* @hooked woocommerce_show_product_images – 20
*/
do_action( ‘woocommerce_before_single_product_summary’ );
?><div class=”summary entry-summary”>
<div class=”summary-top clearfix”>
<div class=”entry-title” itemprop=”name”><h1><?php the_title(); ?></h1></div>
<div itemprop=”offers” itemscope itemtype=”http://schema.org/Offer”>
<p itemprop=”price” class=”price”><?php echo $product->get_price_html(); ?></p>
<meta itemprop=”priceCurrency” content=”<?php echo get_woocommerce_currency(); ?>” />
<?php if (!$catalog_mode) { ?><link itemprop=”availability” href=”http://schema.org/<?php echo $product->is_in_stock() ? ‘InStock’ : ‘OutOfStock’; ?>” /><?php } ?>
</div>
Attachments:
You must be logged in to view attached files. -