stratmansblues
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zerif Lite] Section or Div Container Full Width..
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Html Anchor Section LinksSearched on google and found a solution in case anyone is running into a similar issue.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Responsive Issues on TabletTried it with the stock twentyseventeen theme and took these screen shots. Still the same issue. The grey area seems to be gone now on both the original and child theme. Maybe that was a fluke. The navigation menu is cutting off. I have another website, drewjweb.com that uses the same theme and it is doing the same thing on iPad.
https://pasteboard.co/GPgxq3W.png
https://pasteboard.co/GPgyovN.pngForum: Fixing WordPress
In reply to: Google Adsense and WordPressAny workarounds for this issue?
Forum: Fixing WordPress
In reply to: Google Adsense and WordPress<?php /** * The header for our theme. * * This is the template that displays all of the <head> section and everything up until <div id="content"> * * @link https://developer.ww.wp.xz.cn/themes/basics/template-files/#template-partials * * @package Bhari * @since 1.0 */ ?><!DOCTYPE html> <?php bhari_html_before(); ?> <html <?php language_attributes(); ?>> <head> <?php bhari_head_top(); ?> <meta charset="<?php bloginfo('charset'); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <?php bhari_head_bottom(); ?> <?php wp_head(); ?> <script>window._epn = {campaign:5338146318};</script> <script src="https://epnt.ebay.com/static/epn-smart-tools.js"></script> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <script> (adsbygoogle = window.adsbygoogle || []).push({ google_ad_client: "ca-pub-7282003640012354", enable_page_level_ads: true }); </script> </head> <body <?php body_class(); ?>> <?php bhari_body_top(); ?> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e('Skip to content', 'bhari'); ?></a> <?php bhari_header_before(); ?> <header id="masthead" class="site-header" role="banner"> <?php bhari_header_top(); ?> <div class="site-branding"> <?php if (is_front_page() && is_home() ) : ?> <h1 class="site-title"><a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1> <?php else : ?> <p class="site-title"><a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></p> <?php endif; ?> <?php $description = get_bloginfo('description', 'display'); ?> <?php if ($description || is_customize_preview() ) : ?> <p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p> <?php endif; ?> </div><!-- .site-branding --> <nav id="site-navigation" class="main-navigation" role="navigation"> <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"> <?php if (BHARI_SUPPORT_FONTAWESOME ) : ?> <i class="fa fa-reorder" aria-hidden="true"></i> <?php endif; ?> <?php esc_html_e('Primary Menu', 'bhari'); ?> </button> <?php wp_nav_menu(array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu' )); ?> </nav><!-- #site-navigation --> <?php bhari_header_bottom(); ?> </header><!-- #masthead --> <?php bhari_header_after(); ?> <?php if (get_header_image() ) : ?> <div class="custom-headers"> <a href="<?php echo esc_url(home_url('/')); ?>" rel="home"> <img src="<?php header_image(); ?>" width="<?php echo esc_attr(get_custom_header()->width); ?>" height="<?php echo esc_attr(get_custom_header()->height); ?>" alt=""> </a> </div> <?php endif; // End header image check. ?> <?php bhari_content_before(); ?> <div id="content" class="site-content"> <?php bhari_content_top(); ?>Forum: Fixing WordPress
In reply to: Google Adsense and WordPressBlade, I just tried that and got the same result.
Forum: Fixing WordPress
In reply to: Google Adsense and WordPressUsing just the script tag they provide in the head section of the header.php file.
<script> (adsbygoogle = window.adsbygoogle || []).push({ google_ad_client: "ca-pub-7282003640012354", enable_page_level_ads: true }); </script>Forum: Plugins
In reply to: [Ultimate Product Catalog] Quick way to add $ before prices?I already attempted to add a $ in the php shortcodes file, but an update was just released and canceled out my changes.
So since I used a child theme, I added some css to show a $ before prices. If anyone else runs into this, here is the code that I used.
.prod-cat-addt-details-price:before { content: "$ "; } .upcp-thumb-price:before { content: "$ "; } .upcp-list-price:before { content: "$ "; } .upcp-detail-price:before { content: "$ "; }Forum: Plugins
In reply to: [Ultimate Product Catalog] Quick way to add $ before prices?Anyone?
Forum: Plugins
In reply to: [Ultimate Product Catalog] Thumbnail Display IssueFound out the issue. I changed the height to a fixed 320px instead of min and max height. Seems to be lined up now.