Hasral
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Fastest Cache] How to Clear or Delete meta style?if using the paid version is there an option for that, can I show the options?
Forum: Plugins
In reply to: [Nextend Social Login and Register] Login with Google issueI have same problem,
Error: redirect_uri_mismatch
I have entered Client ID and Client Secret and followed the guidelines for using it to log in to Google but it still does not work, and error information that appears as shown below. Please help to solve this problem! https://prntscr.com/lieruv & https://prntscr.com/liesbs
- This reply was modified 6 years ago by Hasral.
Forum: Fixing WordPress
In reply to: [ASK] WP Version 4.6 Support multiple network ?@danhgilmore Ok thanks your support. ??
Forum: Fixing WordPress
In reply to: [ASK] WP Version 4.6 Support multiple network ?@danhgilmore I use multi site network in my site WP version 4.5.3, it’s no problem if i up to 4.6?
Forum: Fixing WordPress
In reply to: How to display banner/ads in x post ?Forum: Fixing WordPress
In reply to: How to display banner/ads in x post ?I already post full code file page-home.php in Pastebin and I Use theme Flax-Mag from Themforest.
Forum: Fixing WordPress
In reply to: How to display banner/ads in x post ?if I use code #post-8624465 it’s work but show that Ads3, Ads1 and Ads2 no show.
if I use code #post-8624521 show that “Ads1 Ads2 Ads3”.
I do not understand why such.
Forum: Fixing WordPress
In reply to: How to display banner/ads in x post ?Thanks @michael want to help me.
Forum: Fixing WordPress
In reply to: How to display banner/ads in x post ?I’ve tried but it still does not work that appears
Ads 1 Ads2 Ads3
Should.
// 3 post
Ads1
// 6 post
Ads2
// 9 post
Ads3I am confused. I wanted to like fajaronline. com
Forum: Fixing WordPress
In reply to: How to display banner/ads in x post ?Hi @michael thank for your answer.
Below code my theme it does not work, What should I do? Thanks.<?php
$postnum = 1;
$showads1 = 3;
$showads2 = 6;
$showads3 = 9;
?><?php if (isset($do_not_duplicate)) { ?>
<?php global $post; $mvp_posts_num = esc_html(get_option(‘mvp_posts_num’)); $paged = (get_query_var(‘page’)) ? get_query_var(‘page’) : 1; query_posts(array( ‘posts_per_page’ => $mvp_posts_num, ‘post__not_in’=>$do_not_duplicate, ‘paged’ =>$paged )); if (have_posts()) : while (have_posts()) : the_post(); ?>
<li class=”infinite-post”>
” rel=”bookmark”>
<?php if ( (function_exists(‘has_post_thumbnail’)) && (has_post_thumbnail()) ) { ?>
<div class=”blog-widget-img left relative”>
…..
</div>
<?php } ?>
<div class=”blog-widget-text left relative”>
<span class=”side-list-cat”><?php $category = get_the_category(); echo esc_html( $category[0]->cat_name ); ?></span>
<h2><?php the_title(); ?></h2>
<span><time><?php the_time(get_option(‘date_format’)); ?></time></span>
</div><!– show ads –>
<?php
if ($postnum == $showads1) { ?> Ads1 <?php } $postnum++;
?>
<?php
if ($postnum == $showads2) { ?> Ads2 <?php } $postnum++;
?>
<?php
if ($postnum == $showads3) { ?> Ads3 <?php } $postnum++;
?><?php endwhile; endif; ?>
Forum: Networking WordPress
In reply to: How to multisite wordpress in one database?Forum: Networking WordPress
In reply to: How to multisite wordpress in one database?@mako445 Thank you for the information you gave me, and it was very helpful.
But I’ve read about multisite be some information and I have not received specific information as possible. among friends here are still many who ask about multisite wordpress.
Forum: Fixing WordPress
In reply to: how to add posts to pages in4.5.2@esmi Thanks for reminding me, I’m sorry hopefully @avinndrew read.
Forum: Fixing WordPress
In reply to: how to add posts to pages in4.5.2Hi @avinndrew hope you can help.
Be recommended you create a child theme or use a custom CSS plugin.
<?php
if(is_page(42)){Show something only for page 42
} else {
Show something for all other pages
}
?>