danamv
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Neve] Remove empty space between blocksHello @generalnumpty,
I am afraid that you can not transform a block into a section. You can only change it to another block type or style, by clicking on the block, and then on the first element that appears, then choose your preferred block. https://prnt.sc/10du224
You can either modify that white-space using CSS, and add it into Customzier -> Additional CSS- for example: modifying all spaces below paragraphs on the whole site to have the value of 10px, you can add :
p { margin-bottom: 10px; }You can also add modification CSS modification directly to the blocks, as in this link: https://wordpress.com/support/adding-additional-css-classes-to-blocks/
I hope this was helpful! Please let us know if you have any more questions.
Forum: Themes and Templates
In reply to: [Neve] Issue with ElementorHello @adventurery,
Can you please provide us with some screenshots showing differences on different devices, after making changes?
You can use this site to upload screenshots: https://paste.pics/In the meantime, you can try adding the following into Customizer -> Additional CSS, and please let me know if this solves the hero image issue.
@media (max-width: 500px) .elementor-4482 .elementor-element.elementor-element-3f33c6d { padding: 250px 0px 30px 0px; height: 440px !important; }Thank you for your patience.
Hello @anaisescamp,
We’re glad you’re enjoying Hestia theme.
To add a Read More button on the blog section of your homepage, you would need to add a custom function in your functions.php file of a child theme.
You can also achieve adding text in a section, using hooks. Here you can read more about that https://docs.themeisle.com/article/681-how-to-add-a-custom-section-to-hestia
Also, if you would like to change your order of posts appearing on your homepage, we recommend checking out Gutenberg Blocks and Template Library by Otter, as there are some section blocks such as ‘Latest posts’ and ‘Posts’.
https://wordpress.org/plugins/otter-blocks/I hope this was helpful.
Hello @glennnm,
Can you please provide us with a screenshot from Dashboard -> Tools -> Site Health -> Status?
Please also make sure if any plugin is not causing the issue. You can check by using the Health Check plugin – https://wordpress.org/plugins/health-check by enabling troubleshooting mode.
Thank you.
Forum: Themes and Templates
In reply to: [Hestia] Text in blog drafts post deletedHello @jesperabild,
The issue might come from a plugin conflict. Please back up your site for security purposes, and try deactivating your plugins one by one and see if any of them is causing the problem.
If the issue persists afterward, please provide us with a screenshot from Dashboard -> Tools -> Site Health -> Status. For example https://prnt.sc/10cybm7 . To provide a screenshot you can use this site https://paste.pics/
Please let us know how it goes.
Forum: Themes and Templates
In reply to: [Neve] Neve theme Footer not workingHi @clarapac1,
Apologies for my misunderstanding.
Can you please provide us with a screenshot or a screencast of how do the editing options look to you, so I can better assist you with this issue?Thank you.
Forum: Themes and Templates
In reply to: [Neve] Colour Style issue with Neve Doctor 2Hi @t4tayo,
Are you still facing this issue? I see you have disabled Neve theme, and this is how I am seeing your site now. https://prnt.sc/10cd1cu
Please let us know if we can help.
Forum: Themes and Templates
In reply to: [Neve] Cannot edit header or footerHi @lisasmale
There might be a plugin conflict that is causing the issue to appear. Please back up your site for security purposes and try to disable the plugins one by one and see if any of them causes this problem.
Please let us know if this worked.
Forum: Themes and Templates
In reply to: [Neve] How to change Out of stock text on shop pageHi @topboj,
That should be possible using custom coding, which we usually do not provide, but we will consider it this time. Usually, that issue would require modifying the theme’s files, but there is also another possibility, using CSS.
The following code hides the initial text and adds the new one afterward, in the size of ‘15px’.
Please try adding the following into Customizer -> Additional CSS:.img-wrap .out-of-stock-badge { font-size:0px; } .img-wrap .out-of-stock-badge:after{ content: 'whatever it is you want to add' !important; color: black !important; font-size:15px !important; }You can change the size, the color, the text. You can also modify the font by adding more CSS by yourself. https://www.w3schools.com/css/css_font.asp
I hope this was helpful.
Forum: Themes and Templates
In reply to: [Neve] Remove small “Home>> Title” from above single-post titleHi @imitsi,
I am glad to hear that you have managed to find the root of the problem!
Please let us know if you have any more questions.
Forum: Themes and Templates
In reply to: [Neve] How to change Out of stock text on shop pageHi @topboj,
If you are only looking to changing only the ‘Out of stock’ text, please have a look at this site: https://www.wpdecoder.com/php/woocommerce-change-out-of-stock-text/
Moreover, if you would like to translate more texts, you have the option of installing a translation plugin, such as TranslatePress.
For the second option, please have a look at this guide on how to install it: https://translatepress.com/how-to-translate/neve-theme-wordpress/I hope this was helpful!
Hi @chrissieadele,
Please have a look at the following tutorial: https://www.seosandwitch.com/how-to-fix-lcp-issue/
I hope this was helpful. Please let us know if the problem persists after following up with those steps.
Hi @glennnm,
In your Dashboard -> Updates, can you please try to ‘Reinstall WordPress’, and after that try to reinstall Hestia? https://prnt.sc/10bkics
Please let us know if the problem persists afterward.
Forum: Themes and Templates
In reply to: [Neve] Customize reading time functionHi @chrissiegobel,
If you are using Neve Pro, please, open a ticket on the following link, as this forum is designated for the free version of Neve : https://store.themeisle.com/login/
Thank you!
Forum: Themes and Templates
In reply to: [Neve] Remove small “Home>> Title” from above single-post titleHi @imitsi,
I have tried to replicate on my end with Neve theme, but I do not see that.
Could you please provide more details about how it’s built on your end?To hide an element, you should find the unique class of the element you would want to be removed, add a ‘display: none !important; ‘ property to it, and add the code into Customizer -> Additional CSS.
In the meantime, please take a look at this site:
https://www.ostraining.com/blog/wordpress/hide-element-css/I hope this was helpful. Please let us know if it works.