Viewing 3 reply threads
You must be logged in to reply to this topic.
Hi.
In each “item portfolio” of the SPECULAR theme, the texts “Project Description” and “Project Details”. But I want that in the place of “Project Description” the title of the item portfolio and in the place of “Project Details” I want the text “Other information”
How can I change it?
Thank you.
Hello,
You can change it but you will need to edit theme core files. Based on the type of portfolio style you are using, find the file to edit inside the specular\includes\view\portfolio\ folder in your wordpress installation wp-content folder.
Find this line:
<div class="description">
<h4><?php _e('Project Description', 'codeless') ?></h4>
Replace with this:
<div class="description">
<h4><?php echo esc_html(get_next_post()->post_title); ?></h4>
Then find these lines:
<div class="details">
<h4><?php _e('Project Details', 'codeless') ?></h4>
Change “Project Details” text and save.
Best regards!
Thank you.
If I make these changes in the files, with each update of the theme they will be modified again, is that correct?
Hello,
Yes, that’s correct.
Unless you use a child theme. In that case you make the changes in the child theme files and the parent is left untouched. So you can update theme every time there is a new update available and not need to redo the changes.
Best regards!
You must be logged in to reply to this topic.