Patryk Kachel
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Blover] header imageOne more thing to check is checkbox in > Customize > Site Identity > Display Site Title and Tagline.
If you want me to have a look you may open the ticket and send temporary admin credentials: https://blogonyourown.com/submit-a-ticket/
I need to take a look at 0px info as it appears on my website as well ?? But I changed image and it looks good.
Forum: Themes and Templates
In reply to: [Blover] header imageHi @notesonthecuffs
Did you try with image bigger than 0px? The info needs investigation, but I just tested on my server and it works to me.
May you describe step by step how to reproduce the issue?Thank you,
PatrykForum: Themes and Templates
In reply to: [Blover] Problem with main sliderHi @lukaszno
I replied to your ticket… So please keep the conversation in one place ??Best,
PatrykForum: Themes and Templates
In reply to: [Blover] How to display posts whitout widget of Popular PostHi @leandropafundi,
I’m glad it works for you ??
Would you be able to leave a review?
Here is the link: https://www.ads-software.com/support/theme/blover/reviews/#new-postThanks in advance!
Best,
PatrykForum: Themes and Templates
In reply to: [Blover] How to display posts whitout widget of Popular PostHi @leandropafundi,
to hide widgets on specific pages you may use for example Widget Visibility (part of Jetpack) – more info: https://jetpack.com/support/widget-visibility/
I hope it solves your issue ??
Best,
PatrykForum: Themes and Templates
In reply to: [Pencil] Excerpt on frontpageHi @tulikeidar1
this is quite advanced topic… First you need to create child theme: https://developer.www.ads-software.com/themes/advanced-topics/child-themes/
Then if you’ll understand how it works all will be much clearer. I hope so ??
P.S. I have this option on my “to do” list… But still really busy and not able to implement ??
Best,
PatrykForum: Themes and Templates
In reply to: [Blover] Featured posts sliderThis question is related to WP generally ?? But you can find something about it here: https://fatthemes.com/support/how-to-set-up-sticky-post/
Best,
PatrykForum: Themes and Templates
In reply to: [Blover] Featured posts sliderHi @saeunn,
we are working on documentation ??
But you just need to mark post as sticky to get it there.Best,
PatrykHi @albatros-desta,
you need to do it using custom CSS. Mostly playing with
.main-navigation ul
and.menu-toggle
selectors.I hope it helps you a bit.
Best,
Patryk- This reply was modified 6 years, 6 months ago by Patryk Kachel.
Forum: Themes and Templates
In reply to: [Blover] Displaying a header banner imageIt is only shown on home page and only when there are latest posts displayed (set in > customizer > home page).
Do you need something else?Forum: Themes and Templates
In reply to: [Blover] Displaying a header banner imageThis is standard WordPress header image… You need to go to >Appearance>Customize>Header Image
That’s all ??Forum: Themes and Templates
In reply to: [Blover] Adding ‘Read More’ button to post pagesHi @saeunn,
you can add “read more” by adding “more” tag in the post: I found some tutorial how to do that: https://en.support.wordpress.com/more-tag/#adding-and-customizing-the-more-tag
I hope it helps you a bit ??
Best,
PatrykForum: Themes and Templates
In reply to: [Pencil] Latent wordpress updateHi Laura,
I looked at your website and looks like all is working good.
Maybe there is a problem with caching…
If it’s still not working please submit a ticket https://fatthemes.com/submit-a-ticket/ and attach some screenshots – so I can try to reproduce the issues.Best,
PatrykForum: Themes and Templates
In reply to: [Pencil] Disable image lightbox from themeCan you share the code you used to dequeue the script?
Your function should be hooked into
wp_enqueue_scripts
with low priority (for example 100)
pencil_scripts
function is hooked with priority 10 (default):
add_action( 'wp_enqueue_scripts', 'pencil_scripts' );
So your function should be hooked like this:
add_action( 'wp_enqueue_scripts', 'your_custom_function', 100 );
Then dequeue script in function named
your_custom_function
Hope it’s clear ??
Forum: Themes and Templates
In reply to: [Pencil] Disable image lightbox from themeIf you look carefully at functions.php file in pencil theme, then on lines ~220 to ~239 you’ll see extra variables passed to
pencil-scripts
(viawp_localize_script function
)global $wp_query; $pencil_ajax_max_pages = $wp_query->max_num_pages; $pencil_ajax_paged = ( get_query_var( 'paged' ) > 1 ) ? get_query_var( 'paged' ) : 1; $home_page_slider_play_speed = get_theme_mod( 'home_page_slider_play_speed', 0 ); $home_page_slider_autoplay = ( 0 == $home_page_slider_play_speed ) ? false : true; // Passing theme options to pencil.js. wp_localize_script( 'pencil-scripts', 'pencil', array( 'home_page_slider_img_number' => get_theme_mod( 'home_page_slider_img_number', 1 ), 'home_page_slider_play_speed' => $home_page_slider_play_speed, 'home_page_slider_autoplay' => $home_page_slider_autoplay, 'loadMoreText' => esc_html__( 'Load more posts', 'pencil' ), // 'loadingText' => esc_html__('Loading posts...', 'pencil'), 'noMorePostsText' => esc_html__( 'No more posts to load', 'pencil' ), 'startPage' => $pencil_ajax_paged, 'maxPages' => $pencil_ajax_max_pages, 'nextLink' => next_posts( $pencil_ajax_max_pages, false ), ) );
You need to pass them to your script (or use the same
handle
in your script).- This reply was modified 6 years, 7 months ago by Patryk Kachel.
- This reply was modified 6 years, 7 months ago by Patryk Kachel.
- This reply was modified 6 years, 7 months ago by Patryk Kachel.