democle
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Missing checkbox selected value in mail bodyHi Takayuki,
Thanks for your reply, that is already done. All the tags are added in my message but the checkbox is not showing in the mail body once received.
In my form:
[checkbox want-to use_label_element “one” “two” ]
In my message:
I’d like to: [want-to]
- This reply was modified 4 years, 2 months ago by democle.
Hi Ben, thanks for your message.
Unfortunately I am working on local and I am not able to provide a link.
I haven’t performed the upgrade to 5.5 yet (as it’s too soon and so far no big vulnerabilities have been found on previous version).Wordpress version: 5.4.2
GiveWP: 2.7.5Forum: Plugins
In reply to: [Events Addon for Elementor] Filter by categoryThanks, is there any beta version that I can test?
Forum: Plugins
In reply to: [Elastic Email Sender] Sending status: ErrorOkay I needed to verify the domain first, now it works fine. This can be closed ??
Forum: Plugins
In reply to: [Elementor Header & Footer Builder] Blog pageHi and thank you for replying. I don’t have a ticket ID, I am receiving support via mail from a @bsf.io email address. The subject is “Blog page error”
Forum: Plugins
In reply to: [Elementor Header & Footer Builder] Blog pageHello,
this is the second time I try to get help from your support via ticket (as I need to share the site credentials) but I am having difficulties as they think I am asking help about the theme and I am not using yours. I just need support with the plugin header & footer
any ideas guys?
Forum: Fixing WordPress
In reply to: Plugin install failedare you able to install any other plugin? what’s the permission of the plugins folder?
Forum: Fixing WordPress
In reply to: Can't switch to Visual editor once you are in text, child theme.I found the solution, I am writing again just to save this message hoping that it will be useful to some one else.
The error was in the functions.php file of my child theme, I added a code in order to have an higher score in GTMETRIX, that code contains something weird that broke that function on page editing.
Regards.
Forum: Fixing WordPress
In reply to: Plugin install failedHi,
just the domain has expired or the hosting as well? Are you sure that the path is still the same?If you have setup your new hosting with a different username this can be the problem. Check even the permission of the wp-content folder
Forum: Themes and Templates
In reply to: Custom page template with sidebar@oopixjane thank you so much!!! It worked! I will never thank you enough!
Forum: Themes and Templates
In reply to: Custom page template with sidebar@oopixjane thank you for your reply, this is the page:
https://timetomigrate.com/store
At the bottom of the page you will see the cart
Thank you!Forum: Themes and Templates
In reply to: How to change menu hover color?You are welcome,
may I suggest to use this as well?
.nav > li > a:hover, .nav > li > a:focus {
text-decoration: none;
background-color: #B166B9;
color: #fff !important;
}At the moment if I move the cursor on your menu the background is violet but the font is still grey and hard to read. With the code above you will put the text on white just when you move the mouse over the menu.
Regards.
Forum: Themes and Templates
In reply to: Custom page template with sidebar@michael thank you for your information, I’ll do next time.
Forum: Themes and Templates
In reply to: Custom page template with sidebar@oopixjane thank you for your reply! I did what you said but still no changes.
The left part contains the page content the right part is blank like if the sidebar is there but then the sidebar is show below the page content.
Here is the new code:<?php /** * Template Name: Sidebar */ get_header(); ?> <div class="clear"></div> </header> <!-- / END HOME SECTION --> <div id="content" class="site-content"> <div class="container"> <div class="content-left-wrap col-md-9"> <div id="primary" class="content-area"> <main id="main" class="site-main"> <?php while ( have_posts() ) : the_post(); get_template_part( 'content', 'page' ); // If comments are open or we have at least one comment, load up the comment template if ( comments_open() || '0' != get_comments_number() ) : comments_template(); endif; endwhile; ?> </main><!-- #main --> </div><!-- #primary --> </div><!-- .content-left-wrap --> </div> <div id="sidebar" class="col-md-3"> <?php get_sidebar(); ?> </div><!-- .sidebar-wrap --> </div><!-- .container --> <?php get_footer(); ?>