Forum Replies Created

Viewing 40 posts - 6,041 through 6,080 (of 8,607 total)
  • Author
  • in reply to: Change default tab Activity #16494
     Abe
    Keymaster

    Hi, you could try to change your wp-config file and add the following line:

    COPY CODE
    
    define( 'BP_DEFAULT_COMPONENT', 'profile' );
    

    make sure it’s above the require_once(ABSPATH . ‘wp-settings.php’); line, or else the change won’t take place.
    Hope will help!

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Emails Received #16493
     Abe
    Keymaster

    Use a plugin like Configure SMTP or other that changed WordPress default email FROM address

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: WangGuard Report User Button #16492
     Abe
    Keymaster

    I saw that the < a > element has class “button wangguard-user-report” so you can try to create a style property based on that class , like:

    COPY CODE
    
    .button.wangguard-user-report {font-size:12px;} // or what properties do you want.
    

    You can add this in the Quick CSS box in Sweetdate – Styling options or in child theme/style.css

    .button.wangguard-user-report it should be stronger than just “.button” style so it will take your added style

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Stripe Checkout Issue #16489
     Abe
    Keymaster

    Please check for extra space in one of your API keys for Stripe. (Stripe throws an error about this through Javascript on your site.) (http://wordpress.org/support/topic/membership-checkout-error-please-complete-all-required-fields-stripe)

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Random 404 Errors #16488
     Abe
    Keymaster

    It sounds that you have a permalink issue, or perhaps a web server config one. Try re-saving Settings – Permalinks
    What’s in your htaccess file? Maybe you need to contact your hosting provider (http://wordpress.stackexchange.com/questions/469/how-to-eliminate-weird-404-errors-in-wp-admin)

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Admin toolbar not responsive when not logged in #16484
     Abe
    Keymaster

    Hi, That is default WordPress behavior to hide those items.
    That is defined in /wp-includes/css/admin-bar.css at line line 977 (for @media screen and ( max-width: 782px ))
    all < li > elements have display: none.
    You can create a CSS rule based on that and add it to the child theme/style.css and have display: block instead

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Mega menu questions: outline and columns #16483
     Abe
    Keymaster

    Hi,
    We will change that hover behavior so it won’t disappear when moving slower to the sub-menu.

    You can add icons by changing the item label like:

    COPY CODE
    
    <i class="icon icon-phone"></i> Phone
    

    Right now only menu items can be added in the menu/mega menu and the mega menu just splits the child items in columns
    We will dedicate some time on improving the menu and adding more functionality

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Add kleo_show_love to attachments #16481
     Abe
    Keymaster

    Hi, Yes we already added a filter to the post types. Here is the change function that will be available in 1.4.2 version:

    COPY CODE
    
    	function show_likes()
    	{
    		$ids = str_replace(' ', '', trim(strip_tags(sq_option('likes_exclude'))));
    		$ids = explode(',', $ids);
    		if(in_array(get_the_ID(), $ids)) return;
    		
    		$post_types = array( 'post', 'attachment' );
    		$post_types = apply_filters( 'kleo_likes_post_types', $post_types );
    		$current_post_type = get_post_type();
    		
    		if( in_array( $current_post_type, $post_types ) ) {
    			echo $this->do_likes();
    		}
    	}
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: favorites vs. likes? #16480
     Abe
    Keymaster

    This is worth checking out http://premium.wpmudev.org/blog/let-your-wordpress-visitors-collect-favorite-posts-on-your-site/

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: favorites vs. likes? #16479
     Abe
    Keymaster

    We just wanted as a feature where people can show its appreciation on post. Those can be listed with the ItemLikes widget in the sidebar

    What can I say, you can just disable the Like from Theme options 🙂
    That is just an option if you want to use it or go with another plugin that adds similar functionality

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Woocommerce not working #16477
     Abe
    Keymaster

    I have given some instruction there:
    “Hi, we have created the shop page after the update. Grab the content from the file attached and add it to your page edit in the Classic editor – Text tab, not Visual”

    Also that is another page(a new created page), not the shop page in our demo.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to use custom sidebars for 3 column pages #16476
     Abe
    Keymaster

    Good to know 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to use custom sidebars for 3 column pages #16472
     Abe
    Keymaster

    I understood what you need but the 2nd sidebar from the 3 column pages can’t be changed right now.
    You can easily create a full width page and split the content into columns and add a Wigdetized sidebar element

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Woocommerce not working #16469
     Abe
    Keymaster

    I haven’t said to stick with the simple products. I just said the reason why the products aren’t saving because you aren’t adding specific options. On our demo we created a separate page from the Shop with some shortcodes. See this topic for the code: https://archived.seventhqueen.com/forums/topic/homepage-shop

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Counters on the home page #16438
     Abe
    Keymaster

    Well you are mixing elements from KLEO theme with Sweetdate theme 🙂

    This is Sweetdate theme and animated numbers aren’t available

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Search box #16437
     Abe
    Keymaster

    Those colors are taken from your defined button colors set in Sweetdate – Styling options

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Visual Composer Problems #16436
     Abe
    Keymaster

    So everything is fine now? 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Woocmmerce #16434
     Abe
    Keymaster

    Lets keep this discussion in one place: https://archived.seventhqueen.com/forums/topic/woocommerce-not-working

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Horizontal registration form – mobile problem #16432
     Abe
    Keymaster

    CSS should have been your best choice using by suggestion above that overrides the default styling on desktop view

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Match/Search Algorithm #16431
     Abe
    Keymaster

    Yes just copy the function in the child theme. The function return the percentage number, eq 100 so it is up to you how you customize the function. By default it increments the $score variable with each matching field found

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to use custom sidebars for 3 column pages #16430
     Abe
    Keymaster

    No don’t choose the extra sidebar in any other page. Just add another sidebar from Appearance – Sidebars

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Sweetdate Manager in wp-admin disappeared #16429
     Abe
    Keymaster

    That should not just disappear. Make sure your user has the administrator role.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

     Abe
    Keymaster

    Thanks sharmstr for detailed info.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Social Icons in or below footer. #16427
     Abe
    Keymaster

    You need to edit footer.php file and add it yourself. This is the php code that generates it:
    <?php echo kleo_get_social_profiles(); ?>

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

     Abe
    Keymaster

    Today the update is coming 29.04.2014

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Search on Main Menu #16425
     Abe
    Keymaster

    No, right now that is not possible without code intervention from your side

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Request – Captcha System #16423
     Abe
    Keymaster

    Those plugins should act similar on both themes since it is related more to Buddypress system

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: HELP. Cannot remove text in header! #16422
     Abe
    Keymaster

    Hi, We thought that maybe you need for the community side to put a different text there.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Visual Composer License Key apparently invalid #16421
     Abe
    Keymaster

    Hi, there were similar topics on this and you do not have to activate it since it came with the theme, just ignore that since it applies only to actual clients who bought the plugin itself.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: facebook-profile-pictures #16417
     Abe
    Keymaster

    The only setting for the avatars to show is in Sweetdate – Miscellaneous. It appears the default avatar instead?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Hide admin #16415
     Abe
    Keymaster

    You are not reading my instructions or documentation instructions. Please read carefully: ” the .zip file found under the WordPress folder in the package downloaded”

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: add filter to search people near you by distance #16405
     Abe
    Keymaster

    Please use GEO MY WP which has been customized to work with Sweetdate

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Woocommerce not working #16404
     Abe
    Keymaster

    If you make it simple product you will be able to publish it

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Woocommerce not working #16403
     Abe
    Keymaster

    You should see the notice from Woocommerce when saving: This variable product has no active variations so cannot be published. Changing status to draft.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

     Abe
    Keymaster

    Hi, If you have purchased the WordPress version then you got the WordPress version. If you need the HTML version which is a bit different by design that the WordPress one you can purchase it from: http://themeforest.net/item/sweet-date-premium-landing-page-for-lovers/4285315?ref=SeventhQueen

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: multiple membership level in different page #16396
     Abe
    Keymaster

    Then your option will be to customize the levels page. Template is found in wp-content\themes\kleo\paid-memberships-pro\pages\levels.php

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Hide admin #16395
     Abe
    Keymaster

    Hi, I gave you some solutions to your problem. have you followed the video tutorial, included documentation to see how it should be done? I have also said that you need to install the child theme .zip file found under the WordPress folder in the package downloaded. Also you need the parent theme installed but not active

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: theme options does not work #16394
     Abe
    Keymaster

    Hi, Sorry for the late reply. That is strange. Can you share a link to your site with temporary admin credentials?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to use custom sidebars for 3 column pages #16393
     Abe
    Keymaster

    hi, I the Appearance – Widgets you will see another Sidebar named “Extra – for 3 columns pages” which is used in 3 columns pages

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

     Abe
    Keymaster

    Try this topic for feature requests: https://archived.seventhqueen.com/forums/topic/kleo-features-requests

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

Viewing 40 posts - 6,041 through 6,080 (of 8,607 total)

Log in with your credentials

Forgot your details?