monicafcp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Circumference Lite] Changing demo header bannerI was just having the same issue with the cropped image, even using this bit <img src=”paste the file url here” alt=”short description” /> in the text widget.
The trick that worked for me was to add the Image Widget plugin and use it on the Banner Wide widget.
Good luck 🙂
Forum: Themes and Templates
In reply to: [Adamos] Sidebar on single-product page is droppingThe template for single-product from woocommerce:
<?php /** * The Template for displaying all single products. * * Override this template by copying it to yourtheme/woocommerce/single-product.php * * @author WooThemes * @package WooCommerce/Templates * @version 1.6.4 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly get_header( 'shop' ); ?> <?php /** * woocommerce_before_main_content hook * * @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content) * @hooked woocommerce_breadcrumb - 20 */ do_action( 'woocommerce_before_main_content' ); ?> <?php while ( have_posts() ) : the_post(); ?> <?php wc_get_template_part( 'content', 'single-product' ); ?> <?php endwhile; // end of the loop. ?> <?php /** * woocommerce_after_main_content hook * * @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content) */ do_action( 'woocommerce_after_main_content' ); ?> <?php /** * woocommerce_sidebar hook * * @hooked woocommerce_get_sidebar - 10 */ do_action( 'woocommerce_sidebar' ); ?> <?php get_footer( 'shop' ); ?>Forum: Themes and Templates
In reply to: [Adamos] Sidebar on single-product page is droppingThanks for the answer, alchymyth.
Unfortunately I haven’t been able to progress much.
The template for the single-product page comes with woocommerce. I have another website using the same version of woocommerce, and I checked that both codes for the sigle-page are identical. Since the other website does not have this problem, I suspect the problem lies with the theme, that is different.
The theme is Adamos, and in the page-template folder I only find:
* custom_home.php
* full-width.php (says it doesn’t support sidebar, so cannot be this one)I think all pages are using this “custom_home.php” template, is that a good guess?
If my guess is right, all pages are using exactly the same template (custom_home.php), so there is nothing to compare it to.
I just tested taking away all the CSS changes I did myself to the theme, but it continues with the same sidebar problem, so I know this is not self inflicted 🙂
Many thanks in advance!
This is the code for custom_home.php, if you wanted to look at it:
<?php /* * Template Name: Custom Home Page * Description: A home page with featured slider and widgets. * * @package adamos * @since adamos 1.0 */ get_header(); ?> <div id="primary_home" class="content-area"> <div id="content" class="fullwidth" role="main"> <div class="section group"> <div class="col span_1_of_3"> <div class="featuretext"> <h3><?php echo get_theme_mod( 'featured_textbox_header_one' ); ?></h3> <p><?php echo get_theme_mod( 'featured_textbox_text_one' ); ?></p> </div> </div> <div class="col span_1_of_3"> <div class="featuretext"> <h3><?php echo get_theme_mod( 'featured_textbox_header_two' ); ?></h3> <p><?php echo get_theme_mod( 'featured_textbox_text_two' ); ?></p> </div> </div> <div class="col span_1_of_3"> <div class="featuretext"> <h3><?php echo get_theme_mod( 'featured_textbox_header_three' ); ?></h3> <p><?php echo get_theme_mod( 'featured_textbox_text_three' ); ?></p> </div> </div> </div> <div class="section_thumbnails group"> <h3>Recent Posts</h3> <?php $the_query = new WP_Query(array( 'showposts' => 2, 'post__not_in' => get_option("sticky_posts"), )); ?> <?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?> <div class="col span_1_of_2"> <article class="recent"> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php echo content(50); ?><div class="thumbs-more-link"><a href="<?php the_permalink() ?>"> More</a></div> </article> </div> <?php endwhile; ?> </div> </div><!-- #content .site-content --> </div><!-- #primary .content-area --> <?php get_footer(); ?>Forum: Plugins
In reply to: [Codestyling Localization] WooCommerce 2.1.5 Update Please+1
Forum: Plugins
In reply to: [WooCommerce] Checkout broken after 2.1.3 updateFound the problem, “WooCommerce Custom Currencies” plugin was messing with the currencies. Just deactivated it and worked well.
Forum: Plugins
In reply to: [WooCommerce] Gateway Disabled: PayPal does not support your store currency.Above solution didn’t work for me.
My page is in Brazilian Reais (BRL), and PayPal was charging the correct amount in BRL in the check out.
I updated Woocommerce to 2.1.3 and it was not working (checkout page not loeading), so that I returned to an older version on woocommerce (2.1.1), but now PayPal takes the figure of the purchase, say BRL100, and charges US100.
How to fix this, please?
Thank you.
Forum: Plugins
In reply to: [WooCommerce] Checkout broken after 2.1.3 updateI was not able to rename the plugins, so I just deleted the 2.1.3 woocommerce I had and uploaded the 2.1.1 in its place. (I had a backup copy of everything before, just in case it went wrong)
The shopping cart seems to work fine with 2.1.1, but now my PayPal is not working, instead of charging in my website’s currency, it charges the same figure, but in dollars :/
Forum: Plugins
In reply to: [WooCommerce] Checkout broken after 2.1.3 updateI am also having similar problems with 2.1.3, but 2.1.2 was already unreliable.
2.1.2 was giving me several 404 error pages, even flushing the permalinks repeatedly (what solves this issue on 2.1.2?)
Now tried 2.1.3 and having infinite loading times.
Any ideas, please?
http://www.chocolatesimportados.com
Thank you.