Forum Replies Created
-
Author
-
CatalinModerator
please send me a link to your website with the theme activated.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorplease update the theme to the latest version. Do you have any custom code in your theme? If so, are those modifications added in the child theme? It is important not to lose the code on update.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please send me admin credentials for your website. Reply as private for security reasons.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratortake a look at this link:
you need to add the function in footer.php. You need some coding skills tho.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
For the moment, this option is not possible.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 22, 2014 at 18:02 in reply to: Translating into Turkish, and tempalte difference with or without translation fl #23213CatalinModeratorHello,
To rename dropdown options you need to go (Users > Profile fields) and then click on edit button for every dropodown fields you want to edit.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorWhen you search by first field it will look in the matching one.
Example: I am a -> Looking for a
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please sedn me admin credentials to your WordPress site to be able to replicate your issue. Reply as private for security reasons.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 22, 2014 at 17:43 in reply to: Sweetdate theme is very slow. How can I improve the slow speed issue? #23207CatalinModeratortake a look at this:
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
This has a not so easy solution to solve. The media tab comes from the rtmedia plugin so a good start would be to ask this on their forum.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Add this instead:
COPY CODE<?php /** * @package WordPress * @subpackage Sweetdate * @author SeventhQueen <themesupport@seventhqueen.com> * @since Sweetdate 1.0 */ /** * Sweetdate Child Theme Functions * Add extra code or replace existing functions */ add_action('after_setup_theme','kleo_my_hearts_actions'); function kleo_my_hearts_actions() { /* disable matching on member profile */ remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match'); /* disable matching on member profile */ remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match'); /* Replace the heart over images */ add_filter('kleo_img_rounded_icon', 'my_custom_icon'); /* Replace the heart from register modal */ add_filter('kleo_register_button_icon', 'my_custom_icon_register'); /* Replace the heart from About us widget */ add_filter('kleo_widget_aboutus_icon', 'my_custom_icon_about_widget'); } //members page fields add_action('after_setup_theme','kleo_my_member_data'); function kleo_my_member_data() { global $kleo_config; //this is the details field, right now it take the "About me" field content $kleo_config['bp_members_details_field'] = 'About me'; //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there $kleo_config['bp_members_loop_meta'] = array( 'Profile Type', 'Position Played' ); } add_filter('buddyblog_show_posts_on_profile','__return_true'); //Code to remove hearts /* Replace the heart with a camera icon function */ function my_custom_icon () { return 'camera'; } /* Replace the heart from register modal with a user icon function */ function my_custom_icon_register () { return 'user'; } /* Replace the heart from about us widget with a user icon function */ function my_custom_icon_about_widget () { return 'user'; } //code to dispaly tabs beside avatar { global $bp_tabs; $bp_tabs = array(); $bp_tabs['base'] = array( 'type' => 'regular', 'name' => apply_filters('kleo_extra_tab2',__('About me', 'kleo_framework')), 'group' => 'Base', 'class' => 'regulartab' ); $bp_tabs['my-sport'] = array( 'type' => 'regular', 'name' => __('My Sport', 'kleo_framework'), 'group' => 'My Sport', 'class' => 'regulartab' ); $bp_tabs['myself-summary'] = array( 'type' => 'regular', 'name' => __('Summary', 'kleo_framework'), 'group' => 'Myself Summary', 'class' => 'regulartab' ); /* rtMedia tab - only if plugin installed */ if (class_exists('RTMedia')) { $bp_tabs['rtmedia'] = array( 'type' => 'rt_media', 'name' => __('My photos', 'kleo_framework'), 'class' => 'mySlider' ); } /* Bp-Album tab - only if plugin installed */ elseif (function_exists('bpa_init') AND sq_option('bp_album', 1) == 1) { $bp_tabs['bp-album'] = array( 'type' => 'bp_album', 'name' => __('My photos', 'kleo_framework'), 'class' => 'mySlider' ); } $bp_tabs['looking-for'] = array( 'type' => 'cite', 'name' => apply_filters('kleo_extra_tab1', __('Looking for', 'kleo_framework')), 'group' => apply_filters('kleo_extra_tab1', 'Looking for'), 'class' => 'citetab' ); } //hide friends nav function my_remove_friends_nav() { global $bp; if (!bp_is_my_profile()) { bp_core_remove_nav_item( 'friends' ); } } add_action( 'bp_setup_nav', 'my_remove_friends_nav' ); ?>
Let me know if this works.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
You can achieve that by adding a smaller size logo and set “Resize logo on scroll” to off. Take a look at the screenshot.
Let me know if this helps.
Thank you,
CatalinHi 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.CatalinModeratorHello,
You need to add some jQuery validation in this file:
wp-content\themes\sweetdate\registration\register.php
That implies some coding skills.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Those widgets are a part of BuddyPress plugin. Please try their forum support for a solution.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Try this one:
https://wordpress.org/plugins/wp-super-cache/
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
You can add products to sell in the shopping cart. When you select a membership level it should get you to Membership Checkout. A product you sell is different from a membership level.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Take a look at this link:
http://www.paidmembershipspro.com/add-ons/plugins-on-github/pmpro-limit-post-views/
Let me know if this helps.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
What elements would you like to add? Also, take a look at the available options from the shortcode dropdown.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
PLease take a look at this link:
https://archived.seventhqueen.com/forums/topic/steps-to-update-kleo-theme
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please send me a link to the plugin you are referring to.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
We will release the next update today.
@Pixx: we thank you for your suggestions and we may consider them in the future.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Add this code to your style.css file from the child theme:
COPY CODE.top-bar ul>li a:not(.button) { font-size: XXpx; }
where XX is the size you need.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please take a look at this:
http://codex.wordpress.org/Roles_and_Capabilities
we use the default privileges for Author, Editor, Administrator.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
I tested this and the option is gone if you delete the text and save the field. This functionality works normal.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please take a look at this link:
https://wordpress.org/plugins/peters-login-redirect/
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorthe extended licence is one time purchase and has no time limit.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please take a look at this link:
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please take a look at this link:
https://archived.seventhqueen.com/forums/topic/membership-approval-system-of-the-demo-theme
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please take a look at this link:
https://archived.seventhqueen.com/forums/topic/login-with-facebook-does-not-redirect-to-profile-page
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
You need to add the video in the media library and add the path of the video from the server in the field for the video. You added only the name of the video and not the whole path.
Let me know if this works.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 22, 2014 at 13:18 in reply to: Sweetdate theme is very slow. How can I improve the slow speed issue? #23166CatalinModeratorHello,
Your memory limit is OK and no errors occurred. I checked the two links you send me and the sites have no error and they load in around 9 seconds with all the resources needed to be loaded.
To lower this time load you can use this plugin:
https://wordpress.org/plugins/wp-super-cache/
Let me know if this helps.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
I wasn’t able to replicate your issue. The button from the video isn’t there.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Is everything OK now with the carousel? I see on your site that it can be seen on the homepage.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorAs long as the access to the site is not restricted completely, you can use regular licence.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Tomorrow we will release the next update that will fix this issue.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
I tested this and it works right. Make sure the favicon has the right size and extension.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Take a look at the files attached. The translation needs some improvements tho…
Thank you,
CatalinHi 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.CatalinModeratorHello,
Please add this in your style.css file from the child theme folder:
COPY CODE.contain-to-grid .top-bar { background: #xxx !important; }
where xxx is the color code you want to add.
Let me know if this works.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
add this code in your functions.php file from your child theme:
COPY CODEfunction kleo_woo_header_cart ( $items, $args ) { $cart_location = sq_option( 'woo_cart_location', 'primary' ); if ( $args->theme_location == $cart_location ) { if ( is_user_logged_in() ) { $items .= kleo_woo_get_mini_cart(); } } return $items; }
let me know if this works
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
I tested the short-code on a normal page and it works. Please have in mind that you need to add both height and weight dimensions in the rtMedia picture size settings.
Also, the short-code you added is not part of the visual composer plugin so it cannot work in that way.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts