Promise Akpan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: write post using text or htmlThis issue was caused by disabling the visual editor as seen here https://prnt.sc/sbqqq3
Enabling the Visual Editor fixes this issue and both Classic/Block Editor work fine.
I hope this helps anyone that runs into this issue!
Forum: Fixing WordPress
In reply to: write post using text or htmlOuch!
Sorry for all the trouble you’re facing.
Is it okay to contact you using the form on the contact page of your website and try to help you resolve this?
Thank you for the screenshots!
To my knowledge, you are promoting a WordPress plugin that can be accessed in the WordPress plugin repository and not violating any laws.
In the second screenshot, you can add the full link to that plugin and not just www.remarpro.com.
Nice work on your plugin review! ??
Forum: Fixing WordPress
In reply to: write post using text or htmlPlease can you deactivate all plugins and give it another shot?
If that does not resolve this issue, you may have to contact your web hosting provider.
Forum: Fixing WordPress
In reply to: write post using text or htmlThank you for sharing the screenshot.
That’s not the WordPress Block Editor.
You may have to revisit your plugins list and deactivate some of the plugins to find which one is causing the conflict. You can choose to keep it deactivated.
Let me know if that helps!
Hey Amar!
The Dropbox link is broken.
I believe a plugin image should be free of charge, but in case of doubt, you can get more information from the plugin details as plugins differ with their use of assets (e.g images).
I hope this helps!
Forum: Fixing WordPress
In reply to: write post using text or htmlSince I can’t access this URL from here [https://www.thepennybrick.com/wp-admin/post-new.php], can you please take a screenshot of the page and generate a shareable link [https://prnt.sc/].
- This reply was modified 4 years, 10 months ago by Promise Akpan. Reason: To add links for ease
Forum: Fixing WordPress
In reply to: write post using text or htmlHey @faiyaz32
You seem to have the Classic Editor active on your website.
To resolve this, you can deactivate the Classic Editor plugin and you can start using the new WordPress Block Editor.
If you want to still continue using the Classic Editor, you can select Visual instead of Text like this screenshot.
If this does not work for you, please share a screenshot so we can better assist you.
I hope this helps!
Forum: Reviews
In reply to: [WP Super Cache] Update requires reconfiguration.It works okay without changing its previous settings
Forum: Reviews
In reply to: [WP Super Cache] Update requires reconfiguration.It works fine without changing its settings upon an Update. What server are you using by the way?, Apache or Nginx?
Forum: Plugins
In reply to: [WP Super Cache] WP Super Cache Timestamp don't match with cloudflare onYou are welcome @fliacordoba, Glad it helped and your site as fast as can be!
-Akpan Promise
[Link redacted]Forum: Plugins
In reply to: [WP Super Cache] WP Super Cache Timestamp don't match with cloudflare onI figured it out, after writing and this one I realised that i turned on Cloudflare minify html, which i shouldnt have.
when i turned it off, i had cloudflare and wpsc working perfectly well
It won’t be removed. it will still be on the website, it just wont show errors to search engines
Hi arlinaite.
First you need a child theme, because, if you directly edit the theme files, all you have edited will be lost.I will post the tutorial here.
1. You need to remove all hentry markup from your website with this function: Add this to your child theme functions.php file
/**
* Remove ‘hentry’ from post_class()
*/
function ja_remove_hentry( $class ) {
$class = array_diff( $class, array( ‘hentry’ ) );
return $class;
}
add_filter( ‘post_class’, ‘ja_remove_hentry’ );2. Heuman theme uses the you will also like.., and that produces the rel bookmark errors, so remove that as well. by doing this:
in the original single.php file look for this.<article <?php post_class(); ?>>
Then in your own child theme, remove
<?php post_class(); ?>
That is it. no more hentry errors. yay!.
3. to migrate to schema, you will do two things
edit your content.php and single.php fileThis is what my singles.php file look like, PLEASE copy it all into your child theme single.php file.
<?php get_header(); ?> <section class="content"> <?php get_template_part('inc/page-title'); ?> <div class="pad group"> <?php while ( have_posts() ): the_post(); ?> <article id="post-<?php the_ID(); ?>" itemscope itemtype="https://schema.org/Article"> <div class="post-inner group"> <h1 class="post-title" itemprop="headline"><?php the_title(); ?></h1> <p class="post-byline"><?php _e('by','hueman'); ?> <span itemprop="author"><?php the_author_posts_link(); ?></span> · <span class="updated" itemprop="datePublished"><?php the_time(get_option('date_format')); ?></span></p> <?php if( get_post_format() ) { get_template_part('inc/post-formats'); } ?> <div class="clear"></div> <div class="entry <?php if ( ot_get_option('sharrre') != 'off' ) { echo 'share'; }; ?>"> <div class="entry-inner" itemprop="articleBody"> <?php the_content(); ?> <?php wp_link_pages(array('before'=>'<div class="post-pages">'.__('Pages:','hueman'),'after'=>'</div>')); ?> </div> <?php if ( ot_get_option('sharrre') != 'off' ) { get_template_part('inc/sharrre'); } ?> <div class="clear"></div> </div><!--/.entry--> </div><!--/.post-inner--> </article><!--/.post--> <?php endwhile; ?> <div class="clear"></div> <?php the_tags('<p class="post-tags"><span>'.__('Tags:','hueman').'</span> ','','</p>'); ?> <?php if ( ( ot_get_option( 'author-bio' ) != 'off' ) && get_the_author_meta( 'description' ) ): ?> <div class="author-bio"> <div class="bio-avatar"><?php echo get_avatar(get_the_author_meta('user_email'),'128'); ?></div> <p class="bio-name"><?php the_author_meta('display_name'); ?></p> <p class="bio-desc"><?php the_author_meta('description'); ?></p> <div class="clear"></div> </div> <?php endif; ?> <?php if ( ot_get_option( 'post-nav' ) == 'content') { get_template_part('inc/post-nav'); } ?> <?php if ( ot_get_option( 'related-posts' ) != '1' ) { get_template_part('inc/related-posts'); } ?> <?php comments_template('/comments.php',true); ?> </div><!--/.pad--> </section><!--/.content--> <?php get_sidebar(); ?> <?php get_footer(); ?>
Then this is what my content.php file looks like:
<article id="post-<?php the_ID(); ?>" <?php post_class('group'); ?> itemscope itemtype="https://schema.org/Article"> <div class="post-inner post-hover"> <div class="post-thumbnail"> <a>" title="<?php the_title(); ?>"> <?php if ( has_post_thumbnail() ): ?> <?php the_post_thumbnail('thumb-medium'); ?> <?php elseif ( ot_get_option('placeholder') != 'off' ): ?> <img src="<?php echo get_template_directory_uri(); ?>/img/thumb-medium.png" alt="<?php the_title(); ?>" /> <?php endif; ?> <?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-play"></i></span>'; ?> <?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-volume-up"></i></span>'; ?> <?php if ( is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-star"></i></span>'; ?> </a> <?php if ( comments_open() && ( ot_get_option( 'comment-count' ) != 'off' ) ): ?> <a>"><span><i class="fa fa-comments-o"></i><?php comments_number( '0', '1', '%' ); ?></span></a> <?php endif; ?> </div><!--/.post-thumbnail--> <div class="post-meta group"> <p class="post-category" itemprop="articleSection"><?php the_category(' / '); ?></p> <p class="post-date" itemprop="datePublished"><?php the_time('j M, Y'); ?></p> </div><!--/.post-meta--> <h2 class="post-title"> <a>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a> </h2><!--/.post-title--> <?php if (ot_get_option('excerpt-length') != '0'): ?> <div class="entry excerpt"> <?php the_excerpt(); ?> </div><!--/.entry--> <?php endif; ?> </div><!--/.post-inner--> </article><!--/.post-->
That is it. Cheers everyone.
Forum: Plugins
In reply to: [Post Views Counter] Display the View Counter in the post summary/excerpt.Thanks, it is working great too on https://factwide.com