Forum Replies Created
-
Author
-
Radu
ModeratorHi,
If you want to add a simple thing at the bottom of your post use this function.
COPY CODEfunction CustomKleoAddContentAfterPost( $content ) { if( is_single() ) { $shortcode = '<a href="http://google.com"><img src="http://angierfellowship.dnsalias.com/wp-content/uploads/2014/03/img-600x390.gif"></a>'; $content .= '<h4>My Custom content</h4>'; $content .= $shortcode; } return $content; } add_filter('the_content', 'CustomKleoAddContentAfterPost');
If you want to make your custom post template just copy the original template from parent theme
example :
wp-content/themes/kleo/content-image.php
wp-content/themes/kleo-child/content-image.php
Note the Kleo Child needs to be active
Best 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,
If you want to have this functionality without a plugin, you need to develop that functionality but it will use same resources to do that.
Try this plugin http://webdeveloperswall.com/buddypress/buddypress-like-dislike-plugin and if it’s what are you looking for, you can inspire from here.
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,
See attachment for the issue with disappearing text.
If you want to press the button and then to scroll down look here : https://archived.seventhqueen.com/forums/topic/smooth-anchor#post-65836 ( read entire topic )
Regarding the ajax error try to put this in .htaccess
COPY CODE<IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule>
Best Regards
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.September 10, 2015 at 18:51 in reply to: Import data and revolution slider not working properly #77072Radu
ModeratorHi,
Wordpress it says
ERROR: Too many failed login attempts. Please try again in 20 minutes.
I will try later or tomorrow.
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYes, provide admin credentials.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou’re welcome, exactly you can match only a single page with the body class like :
example : body.page-id-123 #buddypress h4 { font-size:3em; }
Best 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,
Please provide the url to.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
The get_cfield function it’s part of ACF Plugin kleo uses the get_cfield function so , try like this
COPY CODEcase 'video': //oEmbed video // **************** DEBUT MODIF HD ***************************** // init $video = get_cfield( 'embed' ); $video = get_cfield('video_url'); // ****************** FIN MODIF HD ***************************** case 'link': // ******************* DEBUT MODIF HD ***************************** $image = get_cfield('img-site'); echo '<a href="'. get_permalink() .'" class="element-wrap">' . '<img src="' . $image . '">' . kleo_get_img_overlay() . '</a>'; .... // ******************* FIN MODIF HD ***************************** /* echo '<div class="inner-content">' . get_the_content() . '</div><!--end inner-content-->'; break; */ .... case 'image': default: if ( kleo_get_post_thumbnail_url() != '' ) { echo '<div class="post-image">'; // ******************* DEBUT MODIF HD ***************************** $img_url = kleo_get_post_thumbnail_url(); $image = get_cfield('image'); /* $image = aq_resize( $img_url, $kleo_config['post_gallery_img_width'], null, true, true, true ); */ // ******************* FIN MODIF HD ***************************** ....
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,
I think you receive the blank page because of this function :
COPY CODEadd_filter( 'the_content', 'wc_custom_thankyou' ); function wc_custom_thankyou( $content ) { // Check if is the correct page if ( ! is_page(3) ) { return $content; } // check if the order ID exists if ( ! isset( $_GET['order'] ) ) { return $content; } // intval() ensures that we use an integer value for the order ID $order = wc_get_order( intval( $_GET['order'] ) ); ob_start(); // Check that the order is valid if ( ! $order ) { // The order can't be returned by WooCommerce - Just say thank you ?><p><?php echo apply_filters( 'woocommerce_thankyou_order_received_text', __( 'Thank you. Your order has been received.', 'woocommerce' ), null ); ?></p><?php } else { if ( $order->has_status( 'failed' ) ) { // Order failed - Print error messages and ask to pay again /** * @hooked wc_custom_thankyou_failed - 10 */ do_action( 'wc_custom_thankyou_failed', $order ); } else { // The order is successfull - print the complete order review /** * @hooked wc_custom_thankyou_header - 10 * @hooked wc_custom_thankyou_table - 20 * @hooked wc_custom_thankyou_customer_details - 30 */ do_action( 'wc_custom_thankyou_successful', $order ); } } $content .= ob_get_contents(); ob_end_clean(); return $content; }
Replace the existing function from functions.php with the function above, also replace id 3 with your thank you id page.
COPY CODE// Check if is the correct page if ( ! is_page(3) ) {
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOk,
Please provide an normal user dummy account to can test the behavior of this.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou’re welcome,
Also don’t forget to rate our theme on Themeforest and give it 5 stars 🙂
http://themeforest.net/downloads/
Best regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou’re welcome,
Also don’t forget to rate our theme on Themeforest and give it 5 stars 🙂
http://themeforest.net/downloads/
Best 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,
You’re welcome,
We already we are looking for a solution for this animations issues, in the future these “problems” will be fixed.
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYes the CSS it’s ok for hiding that elements but you can use this css path to match only the elements where that plugin it’s active.
COPY CODE.article-content #buddypress .rtm-gallery-title {display: none; !important} .article-content #buddypress .author-box {display: none; !important} .article-content #buddypress .pagination.no-ajax {display: none; !important} .article-content #buddypress .date {display: none; !important}
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 10, 2015 at 17:30 in reply to: Import data and revolution slider not working properly #77044Radu
ModeratorHi,
I see the register page it’s working. http://until4am.com/register/
I’ve tried to get into wp-admin but the credentials are wrong.
Regards
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 CSS
COPY CODEbody.page-id-816 { background-image: url("http://localhost:8080/wp/wp-content/themes/kleo/assets/img/bg-body.gif"); background-repeat: repeat; }
Replace “http://localhost:8080/wp/wp-content/themes/kleo/assets/img/bg-body.gif” with your image url .
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,
Please provide me dummy account to can see that pages.
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 see that CSS, but this page it’s not working http://pethoff.ru/groups/uhod/blog/
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,
Use this css by adding it in Wp-Aadmin -> Theme Options -> General Settings -> Quick CSS
COPY CODE@media screen and (max-width: 400px) { .navbar-header .logo { float:left; } }
Best 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,
These settings are applying only for that fields not for the profile.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Use this css
COPY CODEbody.woocommerce section.container-wrap.main-color { background-color: #FFF !important; }
Add this css to WP-Admin -> Theme Options -> General Settings -> Quick CSS
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,
Use this css
COPY CODEbody.woocommerce section.container-wrap.main-color { background-color: #FFF !important; }
Add this css to WP-Admin -> Theme Options -> General Settings -> Quick CSS
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 9, 2015 at 19:23 in reply to: Import data and revolution slider not working properly #76782Radu
ModeratorHi,
The menu it’s ready. it looks like in demo.
The slider cannot be imported because when i import the slider the server it says
“Status Code:500 Internal Server Error”Try to contact the hosting company and ask them if you have installed PHP ZIPArchive installed on your server or put the image manualy in slider ” http://seventhqueen.com/themes/kleo/wp-content/uploads/revslider/HomeFullWidth/pic_main1.jpg ”
REgards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
Moderator1. Just enable the facebook integration (read my first reply how to)
2. For any other social media login try / test this :
https://wordpress.org/plugins/nextend-twitter-connect/
https://wordpress.org/plugins/nextend-google-connect/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 to use this css
COPY CODE.kleo-transform .animated.animate-when-visible, .kleo-transform .animated.animate-when-almost-visible, .cul { opacity: 1 !important; }
Add this CSS to Theme Options -> General Settings -> Quick CSS.
Let me know if this solve the visibility issue.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorI see, this bug fix be fixed on next update or earlier.
Sorry for inconvenience.
Best 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,
I see that the plugin it works but it’s not stylized but try to use/test this plugin : https://wordpress.org/plugins/social-articles
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,
It seems to be a bug there, i will put this on the bug list, and on a future update this will be fixed.
Thank you for reporting the bug.
Best Regards
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 give me the page URL ?
You have installed any other plugins than kleo themes comes ?if yes try to disable them one by one and recheck.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Can i see the live example of this behaviour ?
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 9, 2015 at 17:52 in reply to: Fix: Menu walker class is overriden by a theme/plugin. Current value = Kleo_Walk #76757Radu
ModeratorHi,
Sorry to say, but this is how Kleo it works it use the walker function to add/hide/remove certain menus items.
If you have the PRO version please send the plugin at this address : radu@seventhqueen.com
After that we will made an integration with that plugin.
Best 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,
You have tested to enable the facebook login from Wp-Admin -> Theme Options -> Miscellaneous -> SET ON Facebook integration and SET ON Enable Registration via Facebook.
If you sign-in with facebook you will have an account on bbpress also
Cheers
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 link of one of the woocommerce page ?
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 9, 2015 at 16:47 in reply to: Import data and revolution slider not working properly #76724Radu
ModeratorThis reply has been set as private.Radu
ModeratorHi,
If the existing page have another slug and name this will not duplicate the page, but anyways if you duplicate only a single page it’s not a problem.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi again,
I cannot figure out what’s causing the problem, but my suggestion is to make a copy of your entire site on a subdomain and here, try to disable one by one plugins that not comes with the Kleo theme, maybe like this you will figure out what causes the problems.
Best REgards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 9, 2015 at 16:26 in reply to: Import data and revolution slider not working properly #76711Radu
ModeratorHi,
The credentials are not correct, can you check please ?
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Download the attachment, unzip the file, upload this file ( archive.php ) to kleo child root directory.
Then open the archive.php at line 59 at variable
COPY CODE$adcode = '<div style="width:728px; height:90px; background-color:red; position: relative;"> <img src="http://northdelawhere.happeningmag.com/wp-content/uploads/728x90-example-banner.jpg"></div>';
replace the code with your ad code, you need to place ad code inside ”.
$adcode = ‘PASTE HERE CODE’;
That’s all.
The code add after each two posts the ad
Regards
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.Radu
ModeratorHi,
Kleo don’t comes with the WP Job Manager and Events manager plugin, can you provide URL with the job manager page and events manager page to take a look ?
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts