Phill
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: move add to cart button above short description@jozmas147 Apologies for that. I see the site is no longer broken, so you have removed the code.
Please see the hooks guide below, which might help you in creating your customization:
https://www.businessbloomer.com/woocommerce-visual-hook-guide-single-product-page/
Forum: Fixing WordPress
In reply to: move add to cart button above short descriptionTry this code in function.php file of your active child theme (or active theme).
add_action( 'woocommerce_single_product_summary', 'customizing_add_cart', 1 ); function customizing_add_cart() { remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 15 ); }Forum: Fixing WordPress
In reply to: Twitter embed not working after upgrade to 5.9.2Hey @clu55ter
This not a WordPress issue as such, it’s an issue at Twitter’s end. There have been several other users facing the same problem today with their embedded Twitter feeds. Hopefully this will be fixed soon by Twitter.
Forum: Fixing WordPress
In reply to: iframes and embedWhat are you seeing when you add the embed script? Are you adding as html in the block editor?
Also do you see any console error messages when you click inspect?
Please also note, HTTPS sites can only use iFrames for content from other HTTPS sites. Similarly, HTTP sites can only use iFrames for content from other HTTP sites.
Forum: Fixing WordPress
In reply to: Can’t access WP-AdminWhat is the actual error that you get? Have you checked the debug log?
Forum: Fixing WordPress
In reply to: critical error on the websiteHave you tried checking Debug log?
Forum: Fixing WordPress
In reply to: Website not displaying OKHave you tried changing themes? The error message on one of the pages suggests it could be theme related.
home/propmcqb/north-cyprusproperties.com/wp-content/themes/realtyspace/lib/bootstrap.phpWhy don’t you try switching back to Twenty Twenty One basic theme and see if the error is still present? Back up first as always.
- This reply was modified 4 years, 4 months ago by Phill.
Forum: Fixing WordPress
In reply to: woocommerce rating stars custom appearanceBetter asking in the WooCommerce forum, but have you tried this css change:
https://www.lockedownseo.com/styling-woocommerce-review-stars/
Forum: Fixing WordPress
In reply to: Images disappearing from Media libraryDoes sound like a plugin conflict. I think Trial & Error will be the best source of troubleshooting here.
Forum: Fixing WordPress
In reply to: Tracking codes are causing 404 errorsHello,
I followed the link and there was no 404. Have you already resolved the issue?
Forum: Fixing WordPress
In reply to: Learndash woocommerce integration plugin issueHello,
I recommend asking at the WooCommerce plugin support page so the plugin developers and support community can help you with support for this learndash integration.
- This reply was modified 4 years, 6 months ago by Phill.
Forum: Fixing WordPress
In reply to: Woocommerce Not Sending Password Reset EmailsYou may wish to double check it is not being sent directly to their spam folder.
Forum: Fixing WordPress
In reply to: Bulk editing of variantsAre you sure your import sheet is setup correctly to map to your product variations?
WPAllImport is a popular choice for bulk updating/ upload of products (I’m not recommending it, but it may provide a solution for you)
Forum: Fixing WordPress
In reply to: How to add the related posts in the footer of PostMake sure you backup all first, then try the following in the template of your choice:
<?php //will list 5 post titles related to first tag on current post $tags = wp_get_post_tags($post->ID); if ($tags) { echo 'Related Posts'; $first_tag = $tags[0]->term_id; $args=array( 'tag__in' => array($first_tag), 'post__not_in' => array($post->ID), 'posts_per_page'=>5, 'caller_get_posts'=>1 ); $my_query = new WP_Query($args); if( $my_query->have_posts() ) { while ($my_query->have_posts()) : $my_query->the_post(); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a> <?php endwhile; } wp_reset_query(); } ?>Forum: Fixing WordPress
In reply to: Best Directory Listing PluginNot an endorsement, but the best rated directory listing theme on themeforest is: https://themeforest.net/item/listeo-directory-listings-wordpress-theme/23239259
It’s updated as of this month with over 4K downloads.