Hatu Denis-Alexandru
Forum Replies Created
-
Forum: Plugins
In reply to: [Super Page Cache] Not purge the cache automaticallyHi @holidaystory17 ,
You can do this if you first enable advance settings from the General section. Go to Show advanced settings.
Under Advanced you will find the section Cloudflare Cache Behavior, there you will find the options you needed.
Also, under Cache section in the Advanced settings you will find more purging methods relevant to your problem like: Purge HTML pages only, Don’t cache the following dynamic contents.
Kind regards,
Denis
Forum: Reviews
In reply to: [LightStart - Maintenance Mode, Coming Soon and Landing Page Builder] PerfectHi @ppaschka ,
Thank you very much for your kind review.
Forum: Themes and Templates
In reply to: [Neve] Strange string of numbers in top left cornerHi @hagetess ,
Theme/Child Theme Bug
- If you’re running a child theme or modified template, a misplaced
echo $i;or similar counter could be causing numbers to appear. - Switch to the default Neve (no child theme, no customizations) and see if the issue persists.
- Switch temporarily to a default WordPress theme (like Twenty Twenty-Four) to see if the issue persists.
Cache Issue
- Old cached fragments can sometimes output half-rendered content. Clear your cache (both WordPress cache plugin + browser cache).
Conflicts
- Deactivate all plugins temporarily and see if the numbers disappear. If they do, reactivate plugins one by one to identify the culprit.
Kind regards,
Denis
Forum: Reviews
In reply to: [Blocks Animation: CSS Animations for Gutenberg Blocks] Simply superHi @widescreenmedia ,
Thank you so much for your kid review!
Forum: Themes and Templates
In reply to: [Non Profit FSE] menu and anchorsHi @lorenzocp ,
Glad I was able to solve your problem and also that you love our theme.
It would help me a lot if you are going to leave a review here : https://ww.wp.xz.cn/support/theme/non-profit-fse/reviews/. Thank you in advance.
Denis
Forum: Themes and Templates
In reply to: [Hestia] Blog post – remove author and dateHi @hermanushunt ,
I am going to provide you some custom PHP code. For this make sure to set up a child theme. Here is how to set a child theme : https://docs.themeisle.com/article/656-how-to-create-a-child-theme-for-hestia.
add_filter( 'hestia_single_post_meta','child_hestia_single_post_meta_function' );
function child_hestia_single_post_meta_function() {
return ''; // Return nothing to hide author and date
}Tell me if this solves your request.
Kind regards,
Denis
Forum: Themes and Templates
In reply to: [Neve] Footer & Header White keeps showingHi @robsandhu ,
I have looked into your page. Seems like you are having lots of elements in the page that can be activated by some plugins. One of the problem can be the navigation bar, put after making it fixed, that white border is still present.
To help me debug this more efficient, please deactivate all your plugins and then reactivate them one by one to see when it appears. Let me know what you discover.
Kind regards,
Denis
Forum: Themes and Templates
In reply to: [Non Profit FSE] menu and anchorsHi @lorenzocp,
In block themes, the old Menus screen is replaced with Navigation block menus. You edit them in the Site Editor, not in the old Menus screen.
If you want quicker access:
- Go to Appearance → Editor → Navigation (left sidebar).
- There you can see all menus you created and can edit items without opening the full header template.
Adding back the “Home” link
Sometimes FSE themes don’t auto-add “Home.”
- Go to Appearance → Editor → Navigation.
- Open your menu.
- Click + Add Link.
- Either pick Pages → Home, or add a Custom Link with / (root URL).
- Label: Home
- URL: /
Now “Home” will appear again.
Making the menu sticky
Grouping the Header Contents for Sticky Effect
- In Appearance → Editor → Templates → Header, select all the elements that should scroll together (usually logo + navigation).
- Click the three dots menu → Group.
- Now they’ll be wrapped inside one Group block.
- With the new Group block selected, go to the right sidebar → Advanced → add the custom class name: sticky-header
- Save changes.
- Add the CSS (Appearance → Customize → Additional CSS):
.sticky-header { position: sticky;
top: 0;
z-index: 1000;
background: #fff; }We do not have specific documentation for this product, but we covered another FSE themes in this link: https://docs.themeisle.com/collection/1775-fse-themes
Let me know if things are working as you expected.
Denis
Forum: Themes and Templates
In reply to: [Hestia] Features, Testimonials notworkingHi @lucaswpgdigital,
Thank you so much for you reply! Open a support thread and I will help you there with your problem.
Regards,
Denis
Hi again @medifx ,
I’m really glad I was able to help. It was my pleasure.
If you have the time and want to share a few words about our support interaction, I invite you to leave me a small review on https://ww.wp.xz.cn/support/theme/neve/reviews/#new-post . It would help me a lot.Thank you!
Forum: Plugins
In reply to: [Redirection for Contact Form 7] Import?Hi @laiau,
Thanks for your follow-up! Importing entries directly through the database is technically possible, but it falls outside the scope of the support we can provide here. I’m unable to offer custom development or provide code for this type of request.
Denis
HI @medifx ,
On my side everything is fine. The link is hidden in the page for me.
Can you provide more detailed steps? Also, provide the browser and the device you are using.
Kind regards,
Denis
Forum: Themes and Templates
In reply to: [Neve] Placeholder {current_year} in footerHi @abcautoglaskl ,
You experienced a common child theme problem.This is actually a common issue that many users encounter when switching to child themes.
Your feedback is valuable and I’ll modify the documentation.
Denis
Forum: Plugins
In reply to: [Redirection for Contact Form 7] Import?Hi @laiau ,
Unfortunately, it’s not possible to directly import entries from another website using this plugin.
The plugin’s primary functions are to:
Redirect users to a different URL after they submit a Contact Form 7 form.
Save form entries to your WordPress database.
Export saved entries from your database to a CSV file.
While it can save entries from a form on your website to your database and export them, it doesn’t have a feature for importing data from an external source or another website.
Denis
- This reply was modified 7 months, 1 week ago by Hatu Denis-Alexandru.
- If you’re running a child theme or modified template, a misplaced