Forum Replies Created
-
Author
-
Radu
ModeratorHi, @jgmedia1
Is there anything else with what i can help you ?
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
@Loyal_Customer What is your website address ?Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Yes i can login now, but what is the link for wp admin ?
The default route is not working /wp-admin/
MAybe the issue that you have described is caused by that plugin that allows you to change administration url.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 25, 2015 at 17:36 in reply to: Make Kleo Post element a regular grid, not a Pinterest/masonry grid #89022Radu
ModeratorHi,
Sorry but is not possible to add post meta i Post Grid from Kleo Posts.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
The link from your last reply is not working (404 error)
Strange rtMedia behaviour i suggest you to disable the plugins that not comes once with Kleo, disable it one by one to see if any of the plugins causes this.
Let me know
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Replace the code that i have provided you before with this
COPY CODEif (!function_exists('kleo_contact_form')) { function kleo_contact_form( $atts, $content = null ) { extract(shortcode_atts(array( 'title' => 'CONTACT US' ), $atts)); $output = ''; $output .= '<div class="kleo-quick-contact-wrapper">' .'<a class="kleo-quick-contact-link" href="#"><i class="icon-mail-alt"></i></a>' .'<div id="kleo-quick-contact">' .'<h4 class="kleo-qc-title">'. $title .'</h4>' .'<p>'. do_shortcode($content).'</p>' .'<form class="kleo-contact-form" action="#" method="post" novalidate>' .'<input type="text" placeholder="'.__("Your Name",'kleo_framework').'" required id="contact_name" name="contact_name" class="form-control" value="" tabindex="276" />' .'<select class="form-control" multiple> <option value="Placeholder1">Placeholder1</option> <option value="Placeholder2">Placeholder2</option> <option value="Placeholder3">Placeholder3</option> </select> ' .'<input type="email" required placeholder="' . __("Your Email",'kleo_framework') . '" id="contact_email" name="contact_email" class="form-control" value="" tabindex="277" />' .'<textarea placeholder="' . __("Type your message...",'kleo_framework') . '" required id="contact_content" name="contact_content" class="form-control" tabindex="278"></textarea>' .'<input type="hidden" name="action" value="kleo_sendmail">' .'<button tabindex="279" class="btn btn-default pull-right" type="submit">'. __("Send",'kleo_framework').'</button>' .'<div class="kleo-contact-loading">'. __("Sending",'kleo_framework').' <i class="icon-spinner icon-spin icon-large"></i></div>' .'<div class="kleo-contact-success"> </div>' .'</form>' .'<div class="bottom-arrow"></div>' .'</div>' .'</div><!--end kleo-quick-contact-wrapper-->'; return $output; } add_shortcode('kleo_contact_form', 'kleo_contact_form'); }
Now it have 3 options.
Regarding to your question “If I want to have another sliding contact form (not site wide but page specific), how can I do that?” You should search for a plugin can can be able to do this, i don’t know any similar plugin to can recommend you.
Regarding to this “How can I have a similar sliding element as you have in Kleo website here for theme setting and demo” the link are incorrect and i cannot see about what you are referring to.
Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 25, 2015 at 16:42 in reply to: Mobile Menu Does Not Stay Open So You Can Click On An Item #89015Radu
ModeratorHi,
Because kleo uses bootstrap js where some custom functions has been included in file, and the bootstrap.min.js loaded from that plugin overwritten rules from kleo bootstrap js, kind of.
The social icons it seems to not have been affected
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please try like this
COPY CODE[kleo_testimonials ids="1,2,3,4,5,6,7,8,9"]
Let me know
Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorPlease add this css to your wp-admin -> theme options -> general settings -> quick css
COPY CODEsection#testclear-synthetic-urine { padding-top: 35px; }
If you press again to that button “more then one week” the content will be shown on.
Let me know if is ok.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Sorry, the code can be added in Wp-admin -> theme options -> general settings -> quick css
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Try with this
COPY CODE// Hide standard shipping option when free shipping is available add_filter( 'woocommerce_available_shipping_methods', 'hide_standard_shipping_when_free_is_available' , 10, 1 ); /** * Hide Standard Shipping option when free shipping is available * * @param array $available_methods */ function hide_standard_shipping_when_free_is_available( $available_methods ) { if( isset( $available_methods['free_shipping'] ) AND isset( $available_methods['flat_rate'] ) ) { // remove standard shipping option unset( $available_methods['flat_rate'] ); } return $available_methods; }
Let me know if it works
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Css for Search
COPY CODEform#bbp-search-form { width: 98%; border-radius:5px !important; margin:0 !important; } main-color #bbpress-forums form#bbp-search-form { box-shadow: 0 0 0 6px #f7f7f7; }
Css for avatars
COPY CODEdiv#bbpress-forums .bbp-replies li .bbp-reply-author a img { border-radius: 5px !important; } Hide avatars from main forum <pre> #bbpress-forums li.bbp-forum-freshness .bbp-author-avatar img.avatar { display:none !important;}
#bbpress-forums div.bbp-forum-author .bbp-author-avatar, #bbpress-forums div.bbp-topic-author .bbp-author-avatar, #bbpress-forums div.bbp-reply-author .bbp-author-avatar {
width: 100%;
padding:0 !important;
margin: 0 !important;
}#bbpress-forums div.bbp-reply-author { border: 1px solid #ddd;padding-top: 20px;}
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Glad to hear that.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Still cannot view page, yes with display:none you can hide the elements
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorCOPY CODE#buddypress #members-list .item-title,#buddypress #members-list .item-meta {margin: 0 !important; text-align:center !important;}
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorThis snippet should be added to wp-content/themes/kleo-child/
Then you should modify the form in that function.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
We don’t have a build-in solution for this and you can achieve this by hiring a developer.
Thank you for understanding.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
This the default buddypress behaviour.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
This is now theme works for performance improvement, you can remove your video from section background and use revolution slider instead.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 24, 2015 at 18:57 in reply to: i have your latest version, but it is taking too much server load.. #88854Radu
ModeratorHi,
Yes is loading very slow.
I suggest you to disable all plugins to know if the problem is caused by certain plugin. You can disable all plugins once by going via FTP to wp-content/ and rename the plugins directory by prefixing with @ or some character.
If the issue disappear after disabling all plugins, put name plugins back then go to wp-content/plugins/ and prefixing plugins one by one to can identify what causes the issue.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Done
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
On my side it shows ok,
Building complex pages with VC is not something intended to be made from a mobile device.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAttachments:
You must be logged in to view attached files.November 24, 2015 at 18:32 in reply to: Can I Remove the “FREE” label on Woocommerce Products without Price? #88839Radu
ModeratorHi,
Please take a look here : https://dbarnwal.wordpress.com/2015/06/04/change-laber-price-free-to-other-text-or-blank-in-woocommerce/
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You can do that by going to wp-admin -> theme options -> header options -> Main Menu Font size
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Sorry but i cannot view the page it requires credentials
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Sorry but i cannot view the page it requires credentials
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 24, 2015 at 18:19 in reply to: Mobile Menu Does Not Stay Open So You Can Click On An Item #88830Radu
ModeratorHi,
The problem is because you are using a plugin that loads the bootstrap library over our kelo bootstrap library, the plugin that loads this library is peepso-core, if you disable the plugins, all should be ok.
I suggest you to ask on their forum support about a function that stops to load plugin bootstrap js.
https://wordpress.org/plugins/peepso-core/Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I can click the media and the pop-up with the image is opening but it have opacity 0.5 or something like this.
Do you have updated the Theme (v3.1.2) and rtMedia and rest of plugins to latest version please ?
cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 24, 2015 at 18:10 in reply to: i have your latest version, but it is taking too much server load.. #88827Radu
ModeratorHi,
Strange behaviour,
Please try to disable WP_AUTO_UPDATE_CORE look here : http://seventhqueen.com/blog/tips/guide-getting-wordpress-auto-update-feature-disabled.html
Let me know
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Take a look here : https://docs.woothemes.com/document/hide-other-shipping-methods-when-free-shipping-is-available/
Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Can you provide pge url where the vimeo player appears ?
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You can have custom background background for pages with a css like this
The css will applies for this page : http://hart2hart.org.uk/about-us-2/
COPY CODEbody.page-id-7835 section.container-wrap.main-color { background-color: green !important; }
If you want to apply style for another page copy the snipper from above and change the id page-id-7835
Before to apply the css remove the global background.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Can you be more specific ?
When users upload a picture from activity the image is not showing up ?
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Do you have solved the issue ?
I cannot see the “Black Friday” text
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I’ve responded you here : https://archived.seventhqueen.com/forums/topic/css-problem-2
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
The template attributes is not available for posts types is available only for pages.
But you can try to go to Theme Options -> Blog – > Single Post page Layout* -> select full width
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 24, 2015 at 17:33 in reply to: Can I Have an Open Search Bar in My Header (for eCommerce) #88807Radu
ModeratorHi,
We don’t have a plug and play code to achieve that, this is custom work and you should look for a developer to achieve that or you can post in feature request.
https://archived.seventhqueen.com/forums/forum/kleo/feature-requests
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Do you have looked at the documentation ?
see here tutorials : https://archived.seventhqueen.com/documentation/kleo#installing-the-theme
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You can do this by adding this functions.php from kleo-child directory this code
COPY CODEif (!function_exists('kleo_contact_form')) { function kleo_contact_form( $atts, $content = null ) { extract(shortcode_atts(array( 'title' => 'CONTACT US' ), $atts)); $output = ''; $output .= '<div class="kleo-quick-contact-wrapper">' .'<a class="kleo-quick-contact-link" href="#"><i class="icon-mail-alt"></i></a>' .'<div id="kleo-quick-contact">' .'<h4 class="kleo-qc-title">'. $title .'</h4>' .'<p>'. do_shortcode($content).'</p>' .'<form class="kleo-contact-form" action="#" method="post" novalidate>' .'<input type="text" placeholder="'.__("Your Name",'kleo_framework').'" required id="contact_name" name="contact_name" class="form-control" value="" tabindex="276" />' .'<input type="email" required placeholder="' . __("Your Email",'kleo_framework') . '" id="contact_email" name="contact_email" class="form-control" value="" tabindex="277" />' .'<textarea placeholder="' . __("Type your message...",'kleo_framework') . '" required id="contact_content" name="contact_content" class="form-control" tabindex="278"></textarea>' .'<input type="hidden" name="action" value="kleo_sendmail">' .'<button tabindex="279" class="btn btn-default pull-right" type="submit">'. __("Send",'kleo_framework').'</button>' .'<div class="kleo-contact-loading">'. __("Sending",'kleo_framework').' <i class="icon-spinner icon-spin icon-large"></i></div>' .'<div class="kleo-contact-success"> </div>' .'</form>' .'<div class="bottom-arrow"></div>' .'</div>' .'</div><!--end kleo-quick-contact-wrapper-->'; return $output; } add_shortcode('kleo_contact_form', 'kleo_contact_form'); }
Now you can made you custom html markup
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Can you check the credentials ? i cannot login.
Do you have updated all plugins ?
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts