Rigorous Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [ProfitMag] Comment author is displayed with HTML-TagsHi,
Uses the WordPress database object to query for the comments. The comments are passed through the Array filter hook with the list of comments and the post ID respectively. The $file path is passed through a filter hook called Array, which includes the TEMPLATEPATH and $file combined. Tries the $filtered path first and if it fails it will require the default comment template from the default theme. If either does not exist, then the WordPress process will be halted. It is advised for that reason, that the default theme is not deleted. Will not try to get the comments if the post has none.
Forum: Themes and Templates
In reply to: [ProfitMag] Comment author is displayed with HTML-TagsFind this file in theme editor.
File: wp-includes/comment-template.php
Forum: Themes and Templates
In reply to: [ProfitMag] Comment author is displayed with HTML-TagsHi,
There is issue with the html. Author name is not visible because html is this
<p class=”fn”>Robert Poth</p>
Please replace with <p class=”fn”>Author name</p> this. Then it works
- This reply was modified 4 years, 6 months ago by Rigorous Themes.
- This reply was modified 4 years, 6 months ago by Rigorous Themes.
Forum: Themes and Templates
In reply to: [ProfitMag] Comment author is displayed with HTML-TagsHi,
Can you share the Url of site.
Thanks
DivyaForum: Themes and Templates
In reply to: [ProfitMag] Comment author is displayed with HTML-TagsHi Christine,
We need to verify the issue. It would be great if you can share the admin details with me.
Thanks
DivyaForum: Themes and Templates
In reply to: [RT Portfolio] Primery menu issueHello,
Thank you for writing to us. Can you send us your email to [email protected]. Our support team will look into it.
Forum: Themes and Templates
In reply to: [Political Era] Full width page without sidebarHi There
Thank you for writing in.
We have given options for no-sidebar on every page and post from the dashboard.
Please go to the respective page and post and apply the sidebar options for it.
For more please follow our documentation here : https://rigorousthemes.com/wp-documentation/political-era/.
If you need any further help you can send an email through the support link below.
https://rigorousthemes.com/contact-us/
Thank You!!
`
Forum: Reviews
In reply to: [RT Portfolio] Excellent Support!Thank you so much for your words.
Forum: Themes and Templates
In reply to: [One Page Portfolio] Remove HeaderHello @solutionsdev
Please send your website url so that we can check it.
For quick and prompt reply, please contact us at [email protected]Thank you
Forum: Themes and Templates
In reply to: [One Page Portfolio] Remove HeaderHello,
Go to Apperance >Customize > Additonal Css and add following css#myfullpage > .section .custom-col-8 { width: 100%; padding-left: 100px; } #myfullpage > .section .custom-col-4 { display: none; } #myfullpage > .section::before { display: none; } @media only screen and (max-width: 767px) { #myfullpage > .section .custom-col-8 { padding-left: 40px; } } @media only screen and (max-width: 479px) { #myfullpage > .section .custom-col-8 { padding-left: 20px; } }
Thank You
- This reply was modified 5 years, 7 months ago by Rigorous Themes.
- This reply was modified 5 years, 7 months ago by Rigorous Themes.
- This reply was modified 5 years, 7 months ago by Rigorous Themes.
Forum: Themes and Templates
In reply to: [RT Portfolio] Portfolio with free size imagesHello,
Thank you for writing us. You need to create a child theme to fulfill your requirements.
If you want more dedicated and swift support on the theme, Please contact us through [email protected]. Our support team is stand by to answer each and every one of your questions.
Forum: Reviews
In reply to: [RT Portfolio] Themes very original, simple and wonderful to use !Thank you so much!!
Forum: Reviews
In reply to: [RT Portfolio] Better Portfolio ThemeThank you so much!!
Forum: Themes and Templates
In reply to: [ProfitMag] Slider Issue With WP 5.0.2 UpdateHello,
Please send login details at [email protected] so that we can check it.
Thank YouForum: Themes and Templates
In reply to: [ProfitMag] How do I alter the position of the Page Break?Hi there
It seems you have to modify the theme file to complete your requirement.
So it will be easy to make a child rather than modifying the theme file.
So for that, Create a child theme and paste following code on your child theme function.php file./**
* Move pages
*/
add_filter( ‘the_content’, ‘profitmag_add_pagination’, 5 );
function profitmag_add_pagination( $content ) {ob_start();
wp_link_pages( array(
‘before’ => ‘<div class=”page-links”>’ . esc_html__( ‘Pages:’, ‘business-page-plus’ ),
‘after’ => ‘</div>’,
) );$content .= ob_get_clean();
return $content;
}And you have to copy the content-single.php file from your parent theme to your child theme and remove the code from line number 158 to 163.
If you need any help let us know.you can send us an email at [email protected]
Thank You!!