Back to Front
Forum Replies Created
-
Forum: Plugins
In reply to: [Accept Stripe Payments] No Payment, No emailOh, here’s the URL
https://www.backtofrontdesign.co/contributions-for-hosting/Forum: Plugins
In reply to: [W3 Total Cache] Safari loads site without CSS/StylingI am having this issue also with WP-LMS theme
Forum: Reviews
In reply to: [PHP Compatibility Checker] Didn’t notify about Easy WP SMTP failureThanks Taylor – I hadn’t had any issues with the SMTP mail previously – thanks for offer to check it out, I found a quick workaround though, not getting paid for that project –
BTW I also found this error with WooCommerce Table Rate Shipping by Mangohour that wasn’t picked up by the checker
Warning: Declaration of MH_Table_Rate_Shipping_Method::calculate_shipping($package) should be compatible with WC_Shipping_Method::calculate_shipping($package = Array) in /home/taringpadi/taringpadi.com/wp-content/plugins/table-rate-shipping-for-woocommerce/mh-wc-table-rate.php on line 29
Forum: Plugins
In reply to: [WooCommerce] Modifying the Woocommerce Recent Reviews WidgetOh – took me a while but finally I found this plugin,
https://github.com/Fruitfulcode/WooCommerce-reviews-widget
It does the job, I guess I can just modify their template and not need to update this plugin.Forum: Plugins
In reply to: [FT Calendar] Working with Woocommerce?Oh yeah, its really not friends with Woocommerce – products don’t display on the product archives while this plugin is active.
Any ideas how could fix this? Would make this tool even more super useful!
Forum: Plugins
In reply to: [FT Calendar] Calendar Enabled for All Post TypesBlah Sorry!!!
There was another plugin from the site I’m rebuilding with the similar looking fields. DUH!
This issue is totally resolved! and the calendar acting exactly as we need it tooGetting the same error. Curious what the fix on server side was? Could this be fixed in the plugin?
Forum: Plugins
In reply to: [Custom Post Type UI] Custom Taxonomy Term Archive Redirecting to Latest PostCould be. (Possibly confusing for users too)
I just published a new post type and taxonomy with the same custom fields.
It worked at first, so I then used Post Type Switcher plugin to bring the previous entries across. Then it broke.
So I copied and pasted.
No fun, but it did the trick.Next time I’ll make sure to have different Post Type and Taxonomy slugs.
Atleast its done before the Holidays,many thanks from me and Post Polio Victoria,
hope you get to have a holiday too!Forum: Plugins
In reply to: [Custom Post Type UI] Custom Taxonomy Term Archive Redirecting to Latest PostHi Michael, thanks for your reply!
I’ve just tried disabling all other plugins, and child theme functions.php, and got the same results :/
WordPress theme and plugins are at the latest version.
I’m visiting the taxonomy term archives directly from the admin screen
https://www.postpoliovictoria.org.au/wp-admin/edit-tags.php?taxonomy=newsletter&post_type=newsletter
just in case it was a problem with front end.The only other clue I can see is that the term archives returning 404 have a post count of only 1 (for now).
The term archives that have more than 1 post return the single posts.I’m wondering if I should try duplicate the Newsletter post type with a new slug and see what happens?
Or any other ideas?
Forum: Plugins
In reply to: [Custom Post Type UI] Custom Taxonomy Term Archive Redirecting to Latest Posttried going to permalink settings and save changes a few times, no luck :/
Forum: Themes and Templates
In reply to: [Hitchcock] error at text editorYes I see this too with Hitchcock theme. But it is no problem for me. You can use ‘Distraction Free Writing Mode’ if you need more space to write.
When you publish the post, you will see on the front-end that the post content also has wide margins, which I think is a good design feature.
Forum: Themes and Templates
In reply to: [Hitchcock] WSOD after removing too much codeUse a Child theme to make edits!
But here is the hitchcock theme single.php
<?php get_header(); ?> <div class="content section-inner"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class('single single-post'); ?>> <div class="post-container"> <?php $post_format = get_post_format(); ?> <?php if ( $post_format == 'gallery' ) : ?> <div class="featured-media"> <?php hitchcock_flexslider('post-image'); ?> <div class="clear"></div> </div> <!-- /featured-media --> <?php elseif ( has_post_thumbnail() ) : ?> <div class="featured-media"> <?php the_post_thumbnail('post-image'); ?> </div> <!-- /featured-media --> <?php endif; ?> <div class="post-header"> <p class="post-date"><?php the_time(get_option('date_format')); ?></p> <h1 class="post-title"><?php the_title(); ?></h1> </div> <div class="post-inner"> <div class="post-content"> <?php the_content(); ?> </div> <!-- /post-content --> <div class="clear"></div> <?php $args = array( 'before' => '<div class="page-links"><span class="title">' . __( 'Pages:','hitchcock' ) . '</span>', 'after' => '<div class="clear"></div></div>', 'link_before' => '<span>', 'link_after' => '</span>', 'separator' => '', 'pagelink' => '%', 'echo' => 1 ); wp_link_pages($args); ?> <div class="post-meta"> <?php if (has_category()) : ?> <p class="categories"> <?php _e('In','hitchcock'); ?> <?php the_category(', '); ?> </p> <?php endif; ?> <?php if (has_tag()) : ?> <p class="tags"> <?php the_tags('', ' '); ?> </p> <?php endif; ?> <?php edit_post_link('Edit Post', '<p class="post-edit">', '</p>'); ?> </div> <!-- /post-meta --> <?php $prev_post = get_previous_post(); $next_post = get_next_post(); ?> <div class="post-navigation"> <?php if (!empty( $prev_post )): ?> <a class="post-nav-prev" title="<?php echo esc_attr( get_the_title($prev_post) ); ?>" href="<?php echo get_permalink( $prev_post->ID ); ?>"> <p><?php _e('Next','hitchcock'); ?><span class="hide"> <?php _e('Post','hitchcock'); ?></span></p> <span class="fa fw fa-angle-right"></span> </a> <?php endif; ?> <?php if (!empty( $next_post )): ?> <a class="post-nav-next" title="<?php echo esc_attr( get_the_title($next_post) ); ?>" href="<?php echo get_permalink( $next_post->ID ); ?>"> <span class="fa fw fa-angle-left"></span> <p><?php _e('Previous','hitchcock'); ?><span class="hide"> <?php _e('Post','hitchcock'); ?></span></p> </a> <?php endif; ?> <div class="clear"></div> </div> <!-- /post-navigation --> </div> <!-- /post-inner --> <?php comments_template( '', true ); ?> </div> <!-- /post-container --> </div> <!-- /post --> </div> <!-- /content --> <?php hitchcock_related_posts(); ?> <?php endwhile; else: ?> <p><?php _e("We couldn't find any posts that matched your query. Please try again.", "hitchcock"); ?></p> <?php endif; ?> </div> <!-- /content --> <?php get_footer(); ?>
Forum: Plugins
In reply to: [Categories Images] Img src="empty" –Sorry! its just the images got uploaded to a sub directory of uploads – putting them back in uploads directory fixed it.
Works beautifully love this plugin
Forum: Plugins
In reply to: [Tweet This] Shortcode in Templatelol i mean inside the a tags
Forum: Plugins
In reply to: [Tweet This] Shortcode in TemplateHi John, thanks so much and sorry for the trouble!
After much bewilderment yesterday I finally figured out,
The embarressing issue was – Ad Block!Not being confident with my coding ability I just assumed something was wrong.
Using up to date Ad Block on Firefox with default (I’m pretty sure) add list – It was stripping everything inside the . I wonder if there’s anyway to mark up the divs so in case that happened the whole div got stripped and not left with a broken looking thing.
Thanks for the thorough investigation so sorry for the bother when everythings actually working as it should!