jwayk016
Forum Replies Created
-
Hi Niklas,
Thank you for your response. It’s good to have confirmation that the Standard Card Button is essentially the same as Standard Card Payments and that none of the options require us to store credit card data on our site. Does the Advanced Card Payments functionality leverage PayPal’s Advanced Credit and Debit Card Payments or Payments Advanced? According to PayPal’s website on merchant fees, one requires a monthly fee, whereas the other does not.
Thank you,
JForum: Plugins
In reply to: [Easy Testimonials] Unable to View TestimonialI don’t think another plugin is conflicting with it. I’ve tried disabling all of them and it still redirects to the homepage. So that means it’s probably something to do with my theme/settings?
My theme does have a single.php file. I will post the code below in case you see anything that might be causing the issue.
get_header(); ?> <?php while (have_posts()) : the_post(); ?> <div id="content"> <div class="container"> <div class="shadow_block"> <div class="inner_page clearfix sidebar_right"> <div class="page_section"> <div class="gutter"> <article class="single_post"> <div class="article_text"> <h2><?php if(get_the_title($post->ID)) { the_title(); } else { the_time( get_option( 'date_format' ) ); } ?></h2><hr> <p class="meta"><?php _e( 'By', 'honma' ); ?> <?php the_author(); ?> | <?php the_time( get_option( 'date_format' ) ); ?> | <?php _e( 'Category', 'honma' ); ?> <?php the_category(', '); ?></p> <?php if ( has_post_thumbnail() && ! post_password_required() ) : ?> <?php the_post_thumbnail($post->ID, 'featured'); ?> <?php endif; ?> <?php the_content(); ?> <p class="meta_tags"><?php the_tags(); ?></p> <p><?php posts_nav_link(); ?></p> </div> <?php honma_paginate_page(); ?> <div class="clear"></div> <div class="form"> <?php comments_template(); ?> </div> </article> </div> </div> <?php get_sidebar(); ?> </div> </div> </div> </div> <?php endwhile; ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: install.php "can't display page" error in subdomain installationThank you for your responses. Dheeraj – I have not thought to look at the .htaccess file. I do have 2 .htaccess files – one in the root folder for my live site and one in the “root” folder for my subdomain. Should I only have one, or are you thinking the one for my subdomain is not written correctly?
The .htaccess file currently in my subdomain folder looks quite different from the file for my live site (disclaimer – I didn’t create it). It is named .htaccess.old and contains the following:
# Use PHP5.4 as default
AddHandler application/x-httpd-php5 .phpForum: Plugins
In reply to: [Menu Cart for WooCommerce] Cart not Showing in Mobile MenuHi Ewout. Thank you for your response. After inspecting the menu in Google Chrome, I’ve determined it is in fact a CSS issue – the wpmenucart is showing up in the code. The problem appears to be with the float: right; style. If I set the wpmenucart to use Default Menu Alignment (or change float to none) it fixes the issue and I can see the cart in my menu even when it is toggled for a mobile device.
After playing around with the CSS, my fix was to use the Default Menu Alignment and then add the following CSS to my theme’s custom CSS (the code is in alignment with how my theme deals with the toggle menu):
@media screen and (min-width: 783px) { .wpmenucart-display-standard { float: right !important; } }
I haven’t tested it in all browsers/devices, but at least in IE11 on my laptop it appears to be working. Thank you very much for your help.
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Option to show product count per attribute?Thank you for your detailed response! I greatly appreciate all of your help.
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Option to show product count per attribute?Hi Dima – thanks for your response. I figured I would have to somehow extend the plugin for this (even though part of me had hoped that I was simply missing an easy setting in the plugin configuration). Any suggestions on where to start looking in the code for this? Are there any hooks in the plugin that I could leverage to build this in?
Thanks again for your great plugin!