Free WP TP
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sparkling] featured image does not scale downHi @jimbobjoejack,
Awesome great to see you got that solved.
Please advise if you have more questions.
Have a fantastic day!
Cheers,
MovinForum: Themes and Templates
In reply to: [Sparkling] Site is often "down"Hi @thewebmonk,
I hope you are well today and thanks for posting here.
You are getting the email letting you know that the website is down because you may be using the Jetpack Monitor https://jetpack.me/support/monitor/ module on your site that alerts you the moment that downtime is detected so it’s not the theme issue.
You are not getting this email on your different sites hosted on the same server because may be the Jetpack plugin or the Monitor module of that plugin is not installed on those sites.
Best Regards,
MovinForum: Themes and Templates
In reply to: [Sparkling] Popular post problemI hope you are well today and thank you for your question.
You can achieve this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.
Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS
.widget.sparkling-popular-posts .post-image { clear: both; float: none; max-width: 60px; width: auto; } .widget.sparkling-popular-posts .post-content { margin-left: 0; margin-top: 10px; }Please note if you make changes in the theme files then you have to make these changes again after theme updation as changes made in the theme files get lost on theme updation so it’s not recommended to make any changes in the theme file like adding CSS code in the style.css file of the theme.
Best Regards,
MovinForum: Themes and Templates
In reply to: [Sparkling] How to increase word of contentI hope you are well today and thank you for your question.
You can achieve this by creating a php file like colorlib-plugin.php in the wp-content/plugins/ directory of your WordPress install and then add the following code in it.
<?php /* Plugin Name: Colorlib Plugin Description: Quick Custom Solution Plugin for Implementing Custom Solution. Version: 1.0.0 Author: Movin Author URI: http://freewptp.com/ License: GNU General Public License (Version 2 - GPLv2) */ function custom_excerpt_length( $length ) { return 130; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); function new_excerpt_more( $more ) { return ''; } add_filter('excerpt_more', 'new_excerpt_more');Best Regards,
MovinForum: Themes and Templates
In reply to: [Sparkling] BugHi Kimberly,
I hope you are well today and thanks for posting here.
It’s not actually the bug as the id attribute is not required if the theme is developed using HTML5 and we have developed Sparkling theme using HTML5.
You can find the default WordPress code to display search form as following in this WordPress core file https://core.trac.wordpress.org/browser/tags/4.3.1/src/wp-includes/general-template.php
if ( 'html5' == $format ) { $form = '<form role="search" method="get" class="search-form" action="' . esc_url( home_url( '/' ) ) . '"> <label> <span class="screen-reader-text">' . _x( 'Search for:', 'label' ) . '</span> <input type="search" class="search-field" placeholder="' . esc_attr_x( 'Search …', 'placeholder' ) . '" value="' . get_search_query() . '" name="s" title="' . esc_attr_x( 'Search for:', 'label' ) . '" /> </label> <input type="submit" class="search-submit" value="'. esc_attr_x( 'Search', 'submit button' ) .'" /> </form>'; } else { $form = '<form role="search" method="get" id="searchform" class="searchform" action="' . esc_url( home_url( '/' ) ) . '"> <div> <label class="screen-reader-text" for="s">' . _x( 'Search for:', 'label' ) . '</label> <input type="text" value="' . get_search_query() . '" name="s" id="s" /> <input type="submit" id="searchsubmit" value="'. esc_attr_x( 'Search', 'submit button' ) .'" /> </div> </form>'; }Best Regards,
MovinForum: Themes and Templates
In reply to: [Sparkling] Can't find slider optionsHi @yondoloki,
I hope you are well today and thank you for your question.
On checking the theme slider option “Check if you want to enable slider”, you will get two options “Slider Category” and “Number of slide items” which is displaying in your this shared screenshot http://www.yondoloki.dk/wp-content/uploads/2015/10/Untitled-1.jpg
You are getting only one default category “Uncategorized” in the drop down because i think you have not created any custom category on your site and assign it to posts so please do this as described on the following pages.
http://www.wpbeginner.com/beginners-guide/how-to-add-categories-and-subcategories-to-wordpress/
https://codex.wordpress.org/Manage_Categories_SubPanel
https://en.support.wordpress.com/posts/categories/Best Regards,
MovinForum: Themes and Templates
In reply to: [Sparkling] MenΓΌs lassen sich nicht anklickenHi @dampf-insel,
I hope you are well today and thanks for posting here.
Could you please ask your question in English here so that we will understand it and can help you?
You can also use the following translation service to translate your post from your native language to English.
https://translate.google.co.in/
Kind Regards,
MovinForum: Themes and Templates
In reply to: [Sparkling] Password protected pages do not work in wp 4.3Hi @gonetil,
As you have said that you are not using sparkling theme so it seems the issue you are facing is not related to sparkling theme so instead of asking question in this Sparkling theme forum could you please ask it on the following support forums to help keep support forums separate?
Thanks,
MovinForum: Themes and Templates
In reply to: [Sparkling] Change menu breakpointHi @jstneti,
You will find more information about dequeuing script and stylesheet files on the following pages.
https://codex.wordpress.org/Function_Reference/wp_dequeue_script
https://codex.wordpress.org/Function_Reference/wp_deregister_script
https://themify.me/docs/enqueue-scriptsCheers,
MovinForum: Themes and Templates
In reply to: [Sparkling] Change menu breakpointHi Vale,
I hope the solution posted by Kimberly in her above replies will help you to achieve it but please advise if you have more questions.
Cheers,
MovinForum: Themes and Templates
In reply to: [Sparkling] Change menu breakpointHi Kimberly,
Thank you for helping here in this this forum.
Your help here is really appreciated.
Thanks,
MovinForum: Themes and Templates
In reply to: [Sparkling] Slider for PagesYou are most welcome here π
Forum: Themes and Templates
In reply to: [Sparkling] Slider for PagesHi @risajmiller,
Thank you for your reply.
You can just use the attached child theme from the shared topic or if you are already using the child theme then just add the following code in the functions.php file of your child theme.
/** * Featured image slider, displayed on front page for static page and blog */ function sparkling_featured_slider() { if ( is_front_page() && of_get_option( 'sparkling_slider_checkbox' ) == 1 ) { echo '<div class="flexslider">'; echo '<ul class="slides">'; $count = of_get_option( 'sparkling_slide_number' ); // $slidecat =of_get_option( 'sparkling_slide_categories' ); $query = new WP_Query( array( 'posts_per_page' =>$count, 'post_type' => 'page', 'meta_key' => 'slider_page' ) ); if ($query->have_posts()) : while ($query->have_posts()) : $query->the_post(); echo '<li><a href="'. get_permalink() .'">'; if ( (function_exists( 'has_post_thumbnail' )) && ( has_post_thumbnail() ) ) : echo get_the_post_thumbnail(); endif; echo '<div class="flex-caption">'; if ( get_the_title() != '' ) echo '<h2 class="entry-title">'. get_the_title().'</h2>'; if ( get_the_excerpt() != '' ) echo '<div class="excerpt">' . get_the_excerpt() .'</div>'; echo '</div>'; echo '</a></li>'; endwhile; endif; echo '</ul>'; echo ' </div>'; } }After using the code, just create a custom field slider_page for the page as described on the shared thread.
Best Regards,
MovinForum: Themes and Templates
In reply to: [Travelify] Ajax?Hi @edouardcoleman,
I hope you are well today and sorry for the delay here.
Currently the Travelify theme doesn’t use AJAX.
Please advise if you have more questions.
Kind Regards,
MovinForum: Themes and Templates
In reply to: [Travelify] New User Password: "both"Hi @edouardcoleman,
I hope you are well today and sorry for the delay here.
Awesome great to see you got that resolved.
Please advise if you have more questions.
Have a fantastic day!.
Kind Regards,
Movin