makapa
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] No confirmation messageHi,
It seems to be the designers choice indeed. I wanted initially to ask the developer but there was no activity in the forum.
Thank you for your response, I edited the stylesheet and now it’s ok. Your observation was the help I was looking for.
Thank you.
- This reply was modified 2 years, 7 months ago by makapa.
Forum: Plugins
In reply to: [Contact Form 7] No confirmation messageSo, you mean you’ve resolved it?
Sorry for not being clear. Let me rephrase.
I have not resolved it.
The main theme (barter-child) is in my opinion the troublemaker.
But having no issues in the console (inspect element -> console) leaves me stuck and not having any idea how to proceed to debug.Thus I am still seeking help.
Hi guys,
I found a solution – bellow is one of my websites, check the link bellow
https://mobiladinpaleti.ro/page-sitemap.xml
You need to have the gallery inserted in the page using the legacy shortcodes, in my case
[nggallery id=15]
Thank you for the answers and please excuse the fact that I did now mark the topic as solved
Feel free to ask any other questions as I am in a hurry and my answer may not be clear enough. More than happy to get back.
thanks
Forum: Themes and Templates
In reply to: [Spot] Photo contrastJust solved it!
For those who want to do that: use Gimp (or any other image editor), add a new layer with the color you want and then just play with the opacity of the layer until you get the desired result.
Forum: Plugins
In reply to: [Contact Form 7] Not shown "Message was sent OK" if tracking form submissionHas someone found a solution?
Forum: Plugins
In reply to: [Nav Menu Images] replace image with text in mobile deviceHi,
it’s pretty weird actually that it does not work – maybe it’s a bracket thing (I’ve put the content of the functions file bellow for you to compare it)
I don’t think there is another way to display the responsive menu item – the responsive menu is blank where images are used because the plugin replaces the navigation label with the image.
<?php /* Functions file with additional modifications for the child-theme */ // Function that spans the navigation label and does not show it; used to display the responsive the menu function md_nmi_custom_content( $content, $item_id, $original_content ) { $content = $content . '<span class="page-title" style="display:none">' . $original_content . '</span>'; return $content; } add_filter( 'nmi_menu_item_content', 'md_nmi_custom_content', 10, 3 ); ?>
Forum: Plugins
In reply to: [Nav Menu Images] replace image with text in mobile devicehi,
the code is to be put in the <functions.php> file
preferably you should use a child theme because if you do a theme update you will lose all your changes
Forum: Plugins
In reply to: [Yoast SEO] Magic Solution to Strange "sitemap-index.xml" Not Found errorThanks mate,
It’s actually the only fix that worked for me until now. ??
Forum: Plugins
In reply to: [Yoast SEO] 404 error when I click XML SitemapHow?
Thanks.
I’ve tried both with the same result. Even more, the e-commerce version does not show results even in the search box.
For me it’s ok for now the woocommerce version because I’m in the testing stage of the site. Most probably will buy the pro, looks good for me.
Thanks again for your time.
Thanks for the answer,
What do you mean by “correct version”? Do you mean the paid one? I was actually wondering that, thanks for the confirmation.
Forum: Plugins
In reply to: [Nav Menu Images] Can I show TEXT and Image ?Forum: Plugins
In reply to: [Nav Menu Images] replace image with text in mobile device??
I modified a little bit of code to Milan’s
function md_nmi_custom_content( $content, $item_id, $original_content ) { $content = $content . '<span class="page-title" style="display:none">' . $original_content . '</span>'; return $content; } add_filter( 'nmi_menu_item_content', 'md_nmi_custom_content', 10, 3 );
notice the style=”display:none” inclusion that hides the page-title class when showing the menu, but keeps it in the responsive menu
Forum: Plugins
In reply to: [Nav Menu Images] replace image with text in mobile deviceHi pikaya,
I have the same issue – I have a partial solution.
if you use this code it will span the navigation label under the image and if you check your menu on a mobile device text will show up (you do need to have a responsive theme for this to happen)
function md_nmi_custom_content( $content, $item_id, $original_content ) { $content = $content . '<span class="page-title">' . $original_content . '</span>'; return $content; } add_filter( 'nmi_menu_item_content', 'md_nmi_custom_content', 10, 3 );
Milan, the plugin author, explained that here
however, I don’t know how to just include the page-title and not show up (keeping it in the responsive menu), or make the page-title display ove the image at the base of it
maybe we can fix it togheter
cheers ??
Hi,
I have the same problem, can you put a link or something to point me in the direction?
Thanks