a2ztechnologies
Forum Replies Created
-
Yes you need to set permission for like this
Forum: Fixing WordPress
In reply to: Make a header appear only after a scrollIf your theme have jquery library file you can put this footer.php
If you don’t have jquery library
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.2.min.js"></script> <script type="text/javascript"> $(window).scroll(function(){ var p = $( ".header-after-div-class" ); var position = p.position(); if ($(this).scrollTop() > position.top) { $('.header').addClass('show'); } else { $('.header').removeClass('hide'); } }); </script>
And
1. Add class for just after div tag ‘header-after-div-class’
2. Add class for header container ‘header’
All the very best
Forum: Fixing WordPress
In reply to: Link Option in WP-admin/menu don't workIts jQuery conflict problem
May i know your plugin list
Forum: Fixing WordPress
In reply to: Disapearing down-arrow icons in menu after redirecting sitepublic_html/wp-content/themes/YOUR THEME/header.php
Forum: Fixing WordPress
In reply to: wp_list_commentsOk use another trick
<?php if( is_home() ){?> <style type="text/css"> .comment-reply-link{ display:none; } </style> <?php }?>
Paste on your footer.php
if you don’t want replay link on home page
Forum: Fixing WordPress
In reply to: Make a header appear only after a scrollTry this code
<script type="text/javascript"> $(window).scroll(function(){ var p = $( ".header-after-div-class" ); var position = p.position(); if ($(this).scrollTop() > position.top) { $('.header').addClass('show'); } else { $('.header').removeClass('hide'); } }); </script>
Forum: Fixing WordPress
In reply to: wp_list_commentshttps://blog.mychoons.com/whatismychoons
Its working
Forum: Fixing WordPress
In reply to: Disapearing down-arrow icons in menu after redirecting sitePut this code before your header.php just after title tag
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
Forum: Themes and Templates
In reply to: [Liquid Blank] Main Navigation Font size – Liquid Blank.main-navigation ul ul li { padding: 10px; /* ADD WHAT EVER YOU WANT */ }
Add this code at the bottom of your style sheet
Forum: Fixing WordPress
In reply to: wp_list_comments<?php if( have_posts() ){ while( have_posts() ){ the_post();?> <h3><?php the_title();?></h3> <?php the_content();?> <?php comments_template(); ?> <?php } }?>
Finally ??
Forum: Fixing WordPress
In reply to: wp_list_commentsHi deepgc.,
<body> <?php the_content(); ?> <?php comments_template(); ?> </body>
Try this one
Forum: Fixing WordPress
In reply to: wp_list_commentsHi.,
all code must in the body tag
Try this
<body> <?php the_content(); ?> <?php wp_list_comments( array( 'type' => 'comment' ), $comments ); ?> </body>
Forum: Fixing WordPress
In reply to: Cross browserHi Michael.,
Paste this code on your style.css file, I hope its working
.vc_row-fluid.full-width-section::before { content: " "; display: block; height: 50px; //PADDING TOP width: 100%; } .vc_row-fluid.full-width-section::after { content: " "; display: block; height: 50px; //PADDING BOTTOM width: 100%; }
Forum: Themes and Templates
In reply to: [Liquid Blank] Main Navigation Font size – Liquid BlankHi luckymagpies.,
Replace following line number 789 on your style.css
.main-navigation li a, .main-navigation .current-menu-item a { font-size:13px; }
Hi Nikki.,
Try to 755 permission for wp-content\uploads folder and sub folders