Bam Bam
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Membership] Paypal Sandbox Error MessageHi,
Ok got this sorted by myself, like I said it is the first time I have tried using a Paypal Sandbox and why it wouldn’t work is because I used my live account email address in the button set up instead of my Sandbox account email.
Swapping them over fixed the error message problem, so for anyone else having the same problem, you must use the “facilitator” email address in the button set up.
I do have one other issue, I did a test subscription payment and it went through ok, it didn’t return to the website by itself, I had to click the return to sellers site link, or whatever it says and I have received no emails to say a payment was made and what link to click to complete the registration, have I done something wrong ??
Kindest Regards
Bam BamForum: Plugins
In reply to: [WP-Members Membership Plugin] Paypal Sandbox Error MessageMy sincerest apologies, this is the wrong forum, please delete if possible.
Bam Bam
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Menu bar positioningNever mind, I got it sorted with a simple bit of css.
.site-branding { display: none; } .home .site-branding { display: inherit; }
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Menu bar positioningMenaka,
Hi, I am using Twenty Seventeen again for a site for a friend of mine and I used that code I used before to hide the Header Image on certain pages, but it has hidden or removed the Site Title and Tagline.
I can’t see what is causing that, any suggestions on how to remedy that ??
https://www.bam-web-design.com/rumahputria/Kindest regards
Bam Bam- This reply was modified 8 years ago by Bam Bam.
Forum: Themes and Templates
In reply to: [Zerif Lite] Mobile display not working properlyI have already tried everything I can think of, including plugins to speed things up.
I have today suggested to my client that he consider changing hosts, I did a little research today and found a lot of chat on slow load times for this particular host.
I don’t think it is a theme issue, although I have used the theme a few times and never found it to be lightning fast.
Forum: Themes and Templates
In reply to: [Zerif Lite] Mobile display not working properlyHardeep,
Yes I am, I am starting to wonder if it is the host, because the new site just takes forever to load on a mobile or my desktop and even when it does load, it doesn’t load properly, but as I said originally the dev site loads just fine.
Bam Bam
Forum: Themes and Templates
In reply to: [Twenty Seventeen] How to Change Header Image Reszing OptionsTry this.
@media only screen and (max-width:480px) { .custom-header { height: 200px !important; } }
It would appear that unless you are a paid Premium client support is non existent, this is the 2nd time I have posted a problem with Wordfence and twice no support, it is a shame really, great plugin straight out of the box when it works properly.
Forum: Plugins
In reply to: [Share & Follow Buttons] Add margin-top to the Follow ButtonOk many thanks and that should have read Twenty Seventeen not Twenty Sixteen
Bam Bam
Forum: Plugins
In reply to: [Easy Upload Files During Checkout] 2 proceed to checkout buttonsOk thanks
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Menu bar positioningOk, I found a similar post about Twenty Sixteen and used a portion of the solution to fix this.
Rather than using the page template I modified the header.php
From this:
<header id="masthead" class="site-header" role="banner"> <?php get_template_part( 'template-parts/header/header', 'image' ); ?>
To this:
<header id="masthead" class="site-header" role="banner"> <?php if ( get_header_image() ) : ?> <?php if(is_front_page()){?> <div class="header-image"> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"> <img src="<?php header_image(); ?>" srcset="<?php echo esc_attr( wp_get_attachment_image_srcset( get_custom_header()->attachment_id ) ); ?>" sizes="<?php echo esc_attr( $custom_header_sizes ); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"> </a> </div> <?php } ?> <?php endif; // End header image check. ?>
Only issue is the Menu Bar is now pinned to the top, but that is ok with me and it now stays pinned to the top on mobiles.
Bam Bam
- This reply was modified 8 years, 2 months ago by Bam Bam.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Menu bar positioningPage/Post id’s is what I used to code out the pages without it now and the thought did occur to me that it could become an issue down the track.
Forum: Plugins
In reply to: [Easy Upload Files During Checkout] 2 proceed to checkout buttonsA quick update, this problem may be a conflict with the Woocommerce Weight & Country Based Shipping plugin, as when I click on Calculate Shipping the 2nd button goes away.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Menu bar positioningBy the way, I am using a child theme, I always do.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Menu bar positioningThanks, I was going to go down that path originally and decided to try with the css first.