Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,159,275 members, 7,839,368 topics. Date: Friday, 24 May 2024 at 05:47 PM

Asadul549's Posts

Nairaland Forum / Asadul549's Profile / Asadul549's Posts

(1) (of 1 pages)

Programming / Re: How To Add Script On Drupal Header? by asadul549(m): 1:25pm On Dec 03, 2016
Removed
Programming / Re: How To Add Script On Drupal Header? by asadul549(m): 1:22pm On Dec 03, 2016
Removed.
Programming / Re: How To Add Script On Drupal Header? by asadul549(m): 6:06pm On Dec 01, 2016
can someone please answer?
Programming / How To Add Script On Drupal Header? by asadul549(m): 5:10pm On Dec 01, 2016
I want to add this code below to my drupal site header manually. I need your suggestions.
Thanks in advance!
Programming / Re: Eliminate Render-blocking Javascript And CSS In Above-the-fold Content by asadul549(m): 4:05pm On Nov 08, 2016
Can anyone help?
Programming / Eliminate Render-blocking Javascript And CSS In Above-the-fold Content by asadul549(m): 9:59pm On Nov 07, 2016
I researched a lot about this problem. Please see my attachment. I added this script to get out of this error form google page speed insights tool. But still its showing that file. How to solve it?

<script type="text/javascript">
function downloadJSAtOnload() {
var element = document.createElement("script"wink;
element.src = "wp-content/plugins/LayerSlider/static/js/greensock.js?ver=1.11.8";
document.body.appendChild(element);
}
if (window.addEventListener)
window.addEventListener("load", downloadJSAtOnload, false);
else if (window.attachEvent)
window.attachEvent("onload", downloadJSAtOnload);
else window.onload = downloadJSAtOnload;
</script>

Programming / Re: How To Add Page Title As H1 Tag On Wordpress Loop? by asadul549(m): 2:33am On Oct 31, 2016
tohero:
What do you Intend to achieve? Get dynamic content from the database or static content?

What were you expecting to see? What are you seeing? What haven't you seen?






Note dat You haven't created the wp loop yet, at least in the snippet you posted.

At last it solved. Specially thanks to you man!

1 Like

Programming / Re: How To Add Page Title As H1 Tag On Wordpress Loop? by asadul549(m): 2:32am On Oct 31, 2016
My intention was to fix the hentry errors on webmaster so that I need to put a header tag with "entry-title" class.

Programming / Re: How To Add Page Title As H1 Tag On Wordpress Loop? by asadul549(m): 10:18pm On Oct 29, 2016
I already tried it once but still same.

<?php if(!has_post_format('quote')) : ?>
<div class="clearfix">
<div class="entry-content">
<h1>Camera Shop</h1>
<?php $dfd_post_content = get_the_excerpt(); ?>
<?php echo !empty($dfd_post_content) ? '<p>'.$dfd_post_content.'</p>' : ''; ?>
<?php $read_more_style = (isset($dfd_ronneby['style_hover_read_more']) && !empty($dfd_ronneby['style_hover_read_more'])) ? $dfd_ronneby['style_hover_read_more'] : 'chaffle'; ?>
<a href="<?php echo the_permalink(); ?>" title="<?php the_title(); ?>" class="more-button <?php echo esc_attr($read_more_style); ?> left" data-lang="en"><?php _e('Continue', 'dfd'); ?></a>
<div class="entry-meta right">
<?php get_template_part('templates/entry-meta/mini', 'comments'); ?>
</div>
</div>
</div>
<?php endif; ?>
Programming / Re: How To Add Page Title As H1 Tag On Wordpress Loop? by asadul549(m): 10:17pm On Oct 29, 2016
toheebDOTcom:
The header tag should wrap your title but you declared it way below the excerpt for some reason best known to you though.

Add it like you added the div tag. straight below it.

ok so I want keep the text "Camera shop" between h1 tag. So now please tell me what will be the code so that I can input?
Programming / How To Add Page Title As H1 Tag On Wordpress Loop? by asadul549(m): 8:48pm On Oct 29, 2016
<?php if(!has_post_format('quote')) : ?>
<div class="clearfix">
<div class="entry-content">
<?php $dfd_post_content = get_the_excerpt(); ?>
<?php echo !empty($dfd_post_content) ? '<p>'.$dfd_post_content.'</p>' : ''; ?>
<?php $read_more_style = (isset($dfd_ronneby['style_hover_read_more']) && !empty($dfd_ronneby['style_hover_read_more'])) ? $dfd_ronneby['style_hover_read_more'] : 'chaffle'; ?>
<a href="<?php echo the_permalink(); ?>" title="<?php the_title(); ?>" class="more-button <?php echo esc_attr($read_more_style); ?> left" data-lang="en"><?php _e('Continue', 'dfd'); ?></a>
<div class="entry-meta right">
<?php get_template_part('templates/entry-meta/mini', 'comments'); ?>
</div>
</div>
</div>
<?php endif; ?>

How to place a header(h1) tag below the "entry-content" class.
Programming / Re: Database Error! by asadul549(m): 8:00pm On Oct 29, 2016
sad
Programming / Re: Database Error! by asadul549(m): 7:45pm On Oct 29, 2016
I already tried once by replacing mysqli to mysql on that template. But then it says on the page-
Programming / Re: Database Error! by asadul549(m): 7:41pm On Oct 29, 2016
I recently upgraded Mysql from 5.4.something to 5.5.49
Programming / Re: Database Error! by asadul549(m): 6:28pm On Oct 29, 2016
I will appreciate you guys help man. This is template source code where I'm getting error
Programming / Re: Database Error! by asadul549(m): 7:44pm On Oct 26, 2016
code form where?
From that template where the error is occurring?
Programming / Database Error! by asadul549(m): 7:06pm On Oct 26, 2016
I recently upgraded my server php to 5.6.25 & MySQL to 5.5.49 & from then I'm getting a kind of error like this on specific page.

Warning: mysql_query(): Access denied for user 'yury97'@'localhost' (using password: NO) in /home/yury97/public_html/wp-content/themes/Avada/template-member_list.php on line 22

Warning: mysql_query(): A link to the server could not be established in /home/yury97/public_html/wp-content/themes/Avada/template-member_list.php on line 22


Warning: mysqli_fetch_object() expects parameter 1 to be mysqli_result, boolean given in /home/yury97/public_html/wp-content/themes/Avada/template-member_list.php on line 27


I also was exported my database & then delete & created new & then imported on server & set new user & pass on wp-config.php file on wordpress. My database host is now set to localhost.

What can be the solution now? Will appreciate your help. Thanks in advance!
Webmasters / Webmaster Tool Issues! Can Directly Affect To Your Website Current Ranking! by asadul549(m): 4:32pm On Jun 25, 2016
As a SE optimizer I've seen many website owner to fall in trouble with their webmaster tool error report. Most in case they generally ignore always to check out webmaster or don't give proper attention to take action to solve those errors in time. As a result I've seen many website to get out of current rank slowly by time! It means any small or little kind of error issue can directly affect to your website current search result ranking by several keywords. Thinking about it, I've recently opened a service about solving this type of webmaster tool or search console issues as a gig on Fiverr. In this service I'll solve all kind of webmaster tools issues like site index problem, sitemap not found, crawl errors, url not found(404, 301, 503), duplicate content, blocked resource etc!
https://www.fiverr.com/asadul549/solve-google-search-console-or-webmaster-tool-issues-of-your-website
So its time to be careful about your running website current ranking progress. This is not marketing! I also will appreciate to give you all kind of open suggestions. Feel free to contact or ask any question. Thanks! smiley

(1) (of 1 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 30
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.