figure2
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Bootstrap-based theme breaking in SafariUnderstood Joy, I imagine that others on this form are familiar with both WordPress and Bootstrap and might have run into this as well.
Sorry, but I am not finding the tool to change the text color. I can change the cell, row background and border colors but not the text. Where specifically in the left column is the tool to change the text color?
- This reply was modified 6 years, 4 months ago by figure2.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce login system completely brokenThanks Zach, I will know for the future. I just assumed that if Woocommerce was installed, my client had an account.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce login system completely brokenThanks Zach. I have told my client to ask for a refund of the unwanted purchases. I told her to include a link to this post in her request.
As for your “Buy Now” instructions, let me take you through the process so you can see where it fails.
- Let me establish that my client has a wordpress.com account: https://cheshire2019.com
- Here is a shot of the dashboard to prove the user name and password were correctly entered:

- So now to the stamps.com API extension:

- Stamps.com API in the cart:

- Prompt to connect a wordpress.com account. We chose the second option to connect https://cheshire2019.com to Woocommerce:

- Prompt to enter user name and password. I entered the same user name and password that successfully logged me into my client’s wordpress.com account:

- Woocommerce doesn’t recognize my client’s wordpress.com account:

I stand by my earlier statement. The Woocommerce login system is BROKEN. I can also tell you that this is not the first client I have had to go through this with.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce login system completely brokenForum: Fixing WordPress
In reply to: Mobile behavior not detecting correct screen sizeI got some help over at StackExchange.
In my mobile media query, my absolute positioning of the menu ul was stretching the width of the page:
@media screen and (max-width: 600px) .nav-menu { position: absolute; left: 5000px; }By adding relative positioning and hiding the overflow on the parent div, the problem was solved:
.menu-menu-1-container { position: relative; overflow-x: hidden; }Forum: Plugins
In reply to: [Embed Webmap] Specific search featuresThanks.
Forum: Plugins
In reply to: [Embed Webmap] Specific search featuresOnce I build the app(s), how would I integrate them into a WordPress-based website?
I decided to develop my own Bootstrap starter theme for my needs. Thanks.
Forum: Themes and Templates
In reply to: [GeneratePress] Need to add a Metaslider slideshow to the headerThat did the trick Tom. Thanks.
Forum: Themes and Templates
In reply to: [GeneratePress] Need to add a Metaslider slideshow to the headerThanks Tom. It looks different but the slideshow and .site-description H3 are still not being inserted into the .site-branding div.
Updated functions file: https://www.markhannondesign.com/clientJobs/functions_v2.zip
Forum: Themes and Templates
In reply to: [GeneratePress] Need to add a Metaslider slideshow to the headerHere is my child theme’s functions file if you want to have a look: https://www.markhannondesign.com/clientJobs/functions.zip
Forum: Themes and Templates
In reply to: [GeneratePress] Need to add a Metaslider slideshow to the headerThanks Tom, the code that I’ve been posting is already in the functions.php file of my child theme. Should I add it as a plugin with just this code?
Forum: Themes and Templates
In reply to: [GeneratePress] Need to add a Metaslider slideshow to the headerThanks Tom,
I am not sure where to put this, but here is what I did:`// Build our tagline
add_filter( ‘generate_site_description_output’, function( $output ) {
echo do_shortcode(‘[metaslider id=”4170″]’);
echo $output;
} );$site_tagline = apply_filters( ‘generate_site_description_output’, sprintf(
‘<h3 class=”site-description”><span>%1$s</span></h3>’,
html_entity_decode( get_bloginfo( ‘description’, ‘display’ ) )
));`Here is the result:
The slideshow does in fact display but both it and the .site-description H3 headline has been pulled out of the .site-branding which is now empty below both elements.






