This topic has 22 replies, 4 voices, and was last updated 6 years, 3 months ago ago by Rose Tyler
Hello,
On my blog page and blog category page, I need:
– To have my wp-picture clickable
– Do not have a limit of articles displayed
How can I do that please?
Thank you.
Hello @tlgv,
1. Please provide us the link to the blog page for our better understanding. Mybe add some screenshot software like http://prntscr.com/.
2. You may choose any number of posts in dashboard->general setting->reading.
Regards,
Max Mullins
Hello Max,
Thank you for answering.
1- Please find blog url and screenshot. I just want to have, when I click on the image, I go to the article.
2- Ok thank you.
Regards.
1. Are you using some third party plugin to diplay blog elements? Our theme contains a lot of grid templates for blog like Essential grid Plugin or Massonry Media grid which contains layout with clickable image.
Regards,
Max Mullins
No, I’m using your theme element “mosaic”. I don’t use Essential Grid or Massonry Media grid.
Hello,
I see that images are already clickable and you are using customized versiona as there are no buttons and titles on blog posts. We strongly recommend to make all modifications within Child theme. Is your issue solved?
Regards,
Max Mullins
Hello,
Yes I solved this issue by making custom css on image. I think it’s not the perfect way but it does the job.
Thank you.
Hello,
You’re welcome! We are glad that you sorted out.
Feel free to ask if you need any other help.
Regards,
Rose Tyler.
Hello,
Thank you, yes, I need something else, I want to hide on meta-post on all my blog :
– “par”
– Author name
And I need to hide the “…” on related posts, please see url and screenshot.
Thank you.
I do not see
-par
-author name
in your blog now.
seems you’ve found the way.
… shows on related post if your related post have number of characters (in excerpt / title) more than allowed.
if you want to modify that you need to udate following functions in royal\framework\theme-functions.php
function etheme_excerpt_more( $more )
if(!function_exists('trunc'))
if(!function_exists('et_excerpt'))
Hello,
1) Yes, it is not visible because I hide it with display:none, waiting your solution, you can uncheck it to see them. Please see screenshot.
2) Can I just hide it?
Thank you.
Hello,
1. There is no special option to hide it, so you may use css code (Theme Options> Custom css):
.single-post .meta-post {
display: none;
}
2. Try this code:
.single-post .post-slide .caption {
font-size: 0;
}
Regards,
Rose Tyler.
Hello,
1-If I use this code, I hide all my meta post, I don’t to hide all, just “par” and author name.
2- Thank you, it works.
Hello,
Oh I see, in this case, you need edit /wp-content/themes/royal/content.php file http://prntscr.com/fbjtp3
We recommend to make changes in the child theme https://codex.wordpress.org/Child_Themes because you’ll lose all modifications after each theme update.
Regards,
Rose Tyler.
Hello @tlgv,
1. Please try add this code in custom.css:
.blog .meta-post {text-align:center}
.blog .meta-post a{
display: inline-block;
width: 55px;
background: white;
position: absolute;
right: 0; line-height: 6px;
color: transparent;
right: 0;
line-height: 2;
}
Regards,
Max Mullins
Hello Rose,
I tried to edit content.php, but it doesn’t work, but what I need to do? Delete some lines?
Thank you.
Hello,
Sorry, I mean single.php, you need to delete this line 94 – http://prntscr.com/fbl7cn
Regards,
Rose Tyler.
Hello,
Thank you, it works for single post page. But it doesn’t work for category page and home blog page. What files do I need to edit and what lines?
Thank you.
Hello,
Problem solved, I found the php file.
Thank you.
Hello, @tlgv
Please check content-grid.php for blog page and remove following line from it: <?php _e('by', ETHEME_DOMAIN);?> <?php the_author_posts_link(); ?>
We strongly recommend to do all changes in Child theme to prevent your customiation from overwriting during theme update. Copy all royal edited files into the child theme like wp-content/themes/child-theme/content-grid.php.
Regards,
Max Mullins
Thank you, problem solved, you can close.
That is great thank you for letting us know.
Regards
The issue related to '‘Blog Issues’' has been successfully resolved, and the topic is now closed for further responses