Free WP TP
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sparkling] Unlink date in post metaHi @tiger,
I hope you are well today and thank you for your question.
You can achieve this by creating a child theme of Sparkling theme and then add the following code in the functions.php file of it.
/** * Prints HTML with meta information for the current post-date/time and author. */ function sparkling_posted_on() { $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time>'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string .= '<time class="updated" datetime="%3$s">%4$s</time>'; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); printf( '<span class="posted-on"><i class="fa fa-calendar"></i> %1$s</span><span class="byline"> <i class="fa fa-user"></i> %2$s</span>', $time_string, sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s">%2$s</a></span>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ) ) ); }Best Regards,
MovinForum: Themes and Templates
In reply to: [Sparkling] Typography CustomizerHi @hussong,
I hope you are well today and thanks for notifying us about the issue.
Your help here is really appreciated.
The issue will be resolved in the future version of the theme.
In the meanwhile you can fix the issue by editing the theme code on line number 306 in the theme file functions.php as following.
Before Editing :
// Typography Options global $typography_options; $typography_options = array( 'sizes' => array( '6px' => '6px','10px' => '10px','12px' => '12px','14px' => '14px','15px' => '15px','16px' => '16px','18'=> '18px','20px' => '20px','24px' => '24px','28px' => '28px','32px' => '32px','36px' => '36px','42px' => '42px','48px' => '48px' ), 'faces' => array( 'arial' => 'Arial', 'verdana' => 'Verdana, Geneva', 'trebuchet' => 'Trebuchet', 'georgia' => 'Georgia', 'times' => 'Times New Roman', 'tahoma' => 'Tahoma, Geneva', 'Open Sans' => 'Open Sans', 'palatino' => 'Palatino', 'helvetica' => 'Helvetica', 'Helvetica Neue' => 'Helvetica Neue,Helvetica,Arial,sans-serif' ), 'styles' => array( 'normal' => 'Normal','bold' => 'Bold' ), 'color' => true );After Editing :
// Typography Options global $typography_options; $typography_options = array( 'sizes' => array( '6px' => '6px','10px' => '10px','12px' => '12px','14px' => '14px','15px' => '15px','16px' => '16px','18px'=> '18px','20px' => '20px','24px' => '24px','28px' => '28px','32px' => '32px','36px' => '36px','42px' => '42px','48px' => '48px' ), 'faces' => array( 'arial' => 'Arial', 'verdana' => 'Verdana, Geneva', 'trebuchet' => 'Trebuchet', 'georgia' => 'Georgia', 'times' => 'Times New Roman', 'tahoma' => 'Tahoma, Geneva', 'Open Sans' => 'Open Sans', 'palatino' => 'Palatino', 'helvetica' => 'Helvetica', 'Helvetica Neue' => 'Helvetica Neue,Helvetica,Arial,sans-serif' ), 'styles' => array( 'normal' => 'Normal','bold' => 'Bold' ), 'color' => true );Thanks,
MovinForum: Themes and Templates
In reply to: [Sparkling] Read more not working in homepageHi @clarenceapat,
Sorry to hear of the problem you are having.
I have tested it on my test site and it’s working fine for me using latest version of Sparkling theme.
Could you please share me your site URL where it’s happening so that i can troubleshoot it?
Kind Regards,
MovinForum: Themes and Templates
In reply to: [Sparkling] Content WidthThe question is answered in the following topic :
https://colorlib.com/wp/forums/topic/content-width/#post-47796
Forum: Themes and Templates
In reply to: [Sparkling] Theme show Full text posts instead of summaryHi @mazika,
I hope you are well today and thank you for your question.
To display posts summary could you please try using the solution posted in the following reply?
https://colorlib.com/wp/forums/topic/theme-show-full-text-posts-instead-of-summary/#post-45796
Best Regards,
MovinForum: Themes and Templates
In reply to: [Sparkling] Sparkling co authorHi @digital222,
I hope you are well today and thank you for your question.
Could you please share me the plugin URL that you are using so that i can troubleshoot it?
Also share me the page URL from your site or the screenshot of it where you are having the issue.
Kind Regards,
MovinHi @chanag18,
Awesome great to see you got that resolved.
Please advise if you have more questions.
Have a fantastic day!
Cheers,
MovinForum: Themes and Templates
In reply to: [Travelify] Logo is inside H1 tag – how do I remove the tag?Hi @simon_a6,
We have already fixed this issue in the github version of the theme so you can just download it from the following page and use it.
https://github.com/puikinsh/Travelify
Best Regards,
MovinForum: Themes and Templates
In reply to: [Travelify] How to add banner 468×60 to header?To add advertisement in header you will have to develop custom code as described in the following reply.
https://colorlib.com/wp/forums/topic/insert-html-javascript-iframe-in-header/#post-46499
Forum: Themes and Templates
In reply to: [Unite] Translation only partially activeYou are most welcome here 🙂
Forum: Themes and Templates
In reply to: [Dazzling] Slider Height Bug On First LoadAwesome great to see that the latest version of theme fixed the issue.
Please advise if you have more questions.
Have a fantastic day!
Forum: Themes and Templates
In reply to: [Travelify] how to change font size and spacingHi Susan,
I hope you are well today and thank you for your question.
To adjust font you can use any of the following plugins.
https://wordpress.org/plugins/font/
https://wordpress.org/plugins/tinymce-advanced/
https://wordpress.org/plugins/use-any-font/
https://wordpress.org/plugins/wp-google-fonts/
https://wordpress.org/plugins/easy-google-fonts/
https://wordpress.org/plugins/google-font-manager/We can adjust spacing by developing custom CSS code so could you please share me the pages URLs and screenshots of it where you want to adjust spacing so that i can help you to adjust it?
Kind Regards,
MovinForum: Themes and Templates
In reply to: [Travelify] How to add banner 468×60 to header?Hi @jpbenfica,
I hope you are well today and thank you for your question.
Do you want to display image as a banner in the header or advertisement?
If image then have you tried using header image feature of theme on the following path?
Admin Area -> Appearance -> Header
You can also try using following plugins to achieve this.
https://wordpress.org/plugins/custom-banners/
https://wordpress.org/plugins/useful-banner-manager/
https://wordpress.org/plugins/tags/bannerBest Regards,
MovinForum: Themes and Templates
In reply to: [Travelify] Home Page not loadingHi @nikkil2016,
Sorry to hear of the problem you are having.
I have tested it on my test site and it’s working fine for me using latest version of Travelify theme.
This can be due to plugin conflict on your site so please try temporary deactivating all plugins and see whether everything works fine and then enable the plugins one by one to see which plugin is conflicting if any.
Could you please share me your site URL where it’s happening so that i can troubleshoot it?
Kind Regards,
MovinForum: Themes and Templates
In reply to: [Travelify] slider with recent postsProvided the solution in the following topic to achieve this.
https://colorlib.com/wp/forums/topic/slider-recent-post/#post-45266