-
Search Results
-
In the CUSTOMIZE->HEADER section, I see “Topbar Left Text 1”, “Topbar Left Text 2”, “Topbar Right Text 1” and “Topbar Right Text 2”. They all currently contain the default information that came with the theme. However, they are not displayed in the header of my website. I think I recall seeing these links on my header initially, but obviously I have turned them off somehow. I just cannot locate where that was done.
I am using Header Type 2 and I have customized head-type2.php in my child theme – I inserted a couple of DIVs to place a slogan and custom styled phone number in my header. I see
<div id="topmenu" class="<?php if ('header' == $complete['social_bookmark_pos'] ) { ?> has_bookmark<?php } ?>">
and it looks like ‘social_bookmark_pos’ is where those “Topbar” sections should be pulled in. What am I missing that I cannot show these Topbar sections?I also assume these Topbar text sections is where I would add my social media icon/links? If so can I use short codes for icon there?
Topic: breadcrumbs Gravida pro
Hi!
I like to have breadcrumbs on my website.
That is easy possible with SEO plugin Yoast see: https://kb.yoast.com/kb/implement-wordpress-seo-breadcrumbs/#utm_source=yoast-seo&utm_medium=software&utm_term=kb-breadcrumbs-how-to&utm_content=settings&utm_campaign=wordpress-support&php_version=7.0.33&platform=wordpress&platform_version=5.1.1&software=free&software_version=10.0.1&role=administrator&days_active=198But when I paste the code in header.php page.php or single.php the alignment is not good and a white strip appears above the header.
What is the best way to show breadcrumbs or how can I solve the problem?
Thanks,
SamThis recent update has broken my website. I have upgraded to php7.3 but still the site’s javascript, jquery and images do not load. Any suggestions?
Thanks
The alt tags on images on the Learning Management System (LMS) theme are not showing on the website (logo and other images on pages). This needs to be fixed for website accessibility compliance. Can this be fixed through functions.php or through the template pages?
Topic: Bakers Theme
Hi,
I am using Bakers theme. It’s great. There is only one thing that bothers me. Please go to my page:
http://109.dbwebs.site/index.php/sushi-special/
It looks great on the desktop. However, the image was cut on mobile.
As you can see, I used an image with resolution 270×296 for SUSHI3, so the image is not cut. However, the image got blur when zooming in. So I used an image with a 939×1030 resolution for SUSHI4. It looks great on the desktop but was cut on mobile.
Is there any way I can use the 939×1030 resolution images and not be cut?
Thank you very much.
Warm Regards,
xiaolingI was trying to get my Mailchimp newsletter to display properly in Charity Pro theme and Mailchimp’s instructions are as follows (copied and pasted from Mailchimp site):
“Add our code to your site
Copy code
Click Copy and access your site’s HTML.
Add code
Decide which pages you want to connect to Mailchimp. For each of these pages, paste in your site code just before the closing </head> tag.Check connection
After you’re done, return to this page and check connection.”The code I added was <script id=”mcjs”>!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,”script”,”https://chimpstatic.com/mcjs-connected/js/users/b4df20414ba53d8ba40221596/e44f68c0f29c533342429df74.js”);</script>
and I added it on the line just before the </head> tag as instructed. So the html in the Theme Editor looked like this:
<html <?php language_attributes(); ?>>
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
<meta name=”SKYPE_TOOLBAR” content=”SKYPE_TOOLBAR_PARSER_COMPATIBLE”>
<meta name=”viewport” content=”width=device-width”>
<link rel=”profile” href=”http://gmpg.org/xfn/11″>
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>”>
<!–[if lt IE 9]>
<script type=”text/javascript” src=”<?php echo get_template_directory_uri(); ?>/js/html5.js”></script>
<link rel=”stylesheet” href=”<?php echo get_template_directory_uri(); ?>/css/ie.css” type=”text/css” media=”all” />
<![endif]–>
<?php
wp_head();
$themename = wp_get_theme();
$themename = preg_replace(“/\W/”, “_”, strtolower($themename) );
if( !get_option( $themename ) ) {
require get_template_directory() . ‘/index-default.php’;
exit;
?>
<script id=”mcjs”>!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,”script”,”https://chimpstatic.com/mcjs-connected/js/users/b4df20414ba53d8ba40221596/e44f68c0f29c533342429df74.js”);</script>
</head>I updated the page on WordPress then checked the connection in Mailchimp and it said it was connected. When I reloaded my website, all I get is a completely blank page. No error, no nothing. My website is aartexas.org
I deleted the code I added and updated the WordPress site and my webpage still will not load. The current html in the Theme Editor looks like this:
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
<meta name=”SKYPE_TOOLBAR” content=”SKYPE_TOOLBAR_PARSER_COMPATIBLE”>
<meta name=”viewport” content=”width=device-width”>
<link rel=”profile” href=”http://gmpg.org/xfn/11″>
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>”>
<!–[if lt IE 9]>
<script type=”text/javascript” src=”<?php echo get_template_directory_uri(); ?>/js/html5.js”></script>
<link rel=”stylesheet” href=”<?php echo get_template_directory_uri(); ?>/css/ie.css” type=”text/css” media=”all” />
<![endif]–>
<?php
wp_head();
$themename = wp_get_theme();
$themename = preg_replace(“/\W/”, “_”, strtolower($themename) );
if( !get_option( $themename ) ) {
require get_template_directory() . ‘/index-default.php’;
exit;
?>
</head>What have I messed up and how can I fix it?
Thank you