Forum Replies Created

Viewing 40 posts - 8,401 through 8,440 (of 8,607 total)
  • Author
  • in reply to: individul page background image #8594
     Abe
    Keymaster

    that should work. check your page id or added css

    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: Homepage slider – good for SEO? #8593
     Abe
    Keymaster

    Hi
    Thank you very much for appreciation. Google should read the content in slider just like other content. problems come with content fetched using javascript which is not the case

    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: PMPro levels page bug? #8592
     Abe
    Keymaster

    hi. try re-saving options in Sweetdate – Memberships

    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: Color Scheme for website #8591
     Abe
    Keymaster

    Hi
    I am sorry, I don’t know where it is from since we collected things over time 🙂
    Try a site specialized like istock

    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: City Field #8579
     Abe
    Keymaster

    Like I said, there you set your fields defined for city and country so the system knows which are the fields… City and Country 🙂
    Don’t know what to say more…

    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: Buddypress 1.9 and WordPress 3.8 #8573
     Abe
    Keymaster

    Addd this to sweetdate-child/functions.php

    COPY CODE
    
    add_action('wp_head', 'kleo_admin_bar_fix');
    
    function kleo_admin_bar_fix() 
    {
    	global $wp_version;
    	if ($wp_version >= 3.8) {
    echo '<style>
    	@media screen and (max-width: 600px) {
    		#wpadminbar { position: fixed; }
    	}
    	@media screen and ( max-width: 782px ) {
    		.adminbar-enable .sticky.fixed { margin-top: 46px; }
    	}
    	</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: Buddypress 1.9 and WordPress 3.8 #8561
     Abe
    Keymaster

    We will come with a solution that will not involve wordpress core changes

    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: Infinite Scroll #8545
     Abe
    Keymaster

    Hi,
    That functionality is not available.

    Cheers

    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: Home Page – Mixed Registration/Search not working #8533
     Abe
    Keymaster

    Hi, if you haven’t added any codes or other customizations it should work fine. See what you have changed in the last days and re-save theme options.

    Cheers

    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 members real names #8532
     Abe
    Keymaster

    You can place the file in your child theme.
    The same condition to check for the name.You require basic php knowledge

    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 create 2 different front pages? #8531
     Abe
    Keymaster

    Hi.
    Add it by CSS. You can address the styling only to that particular page by the class that is added to body. Something like this

    COPY CODE
    
    body .page-id-xxx .header-bg {
    background: url("http://path to image")
    }
    
    

    Use browser inspect element feature to see page styling

    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: 3 problems with sign-up page #8508
     Abe
    Keymaster

    Great. I am glad it all works 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: Hide fields in Profile Accordion #8502
     Abe
    Keymaster

    The best way is to put it into child theme so you won’t lose customization after theme update. See if it takes the changes from 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: 3 problems with sign-up page #8490
     Abe
    Keymaster

    2. Please use COdestyling localization plugin and rescan strings. It is there, we just translated it….

    3. this is simple. search the function in framework/functions/facebook_login.php and copy it from there. instead of

    COPY CODE
    
    <i class="icon-facebook"></i>
    

    put an image tag or what you want

    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: other class in short-code #8483
     Abe
    Keymaster

    Hi, Right now it is not possible without redefining the function for the specific shortcode and changing it to include a class attribute. We will try to include this in the next update

    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 post meta #8482
     Abe
    Keymaster

    Hi, this CSS does the trick

    COPY CODE
    
    .article-meta li:nth-child(2), .article-meta li:nth-child(3) {
    display: none;
    }
    
    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: Ajax Profile Tabs #8480
     Abe
    Keymaster

    Hi, maybe:

    COPY CODE
    
    <script>
    jQuery(document).ready(function() {
        jQuery("#item-nav .item-list-tabs a, #subnav li a, .btn-profile ul li a").each(function() {
            jQuery(this).attr('href',jQuery(this).attr('href')+"#main");
        });
    });
    </script>
    
    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: Registration and subscription in the same time #8478
     Abe
    Keymaster

    Hi, After registration it will take users to select a membership. As it says, the code goes to sweetdate-child/functions.php

    sweetdate-child is the theme under wp-content/themes on your server accessed by FTP

    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: Membership restrictions NOT working #8477
     Abe
    Keymaster

    Hi,
    1. That is the way PMPRO plugin works. Try on their site for a solution
    2. I just checked Non members and Logged out users and goes to levels page as logged out. Check if you haven;t done anything wrong somewhere. Re-save the Permalinks settings

    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: BuddyPress 1.9 #8476
     Abe
    Keymaster

    Hi, We haven’t found issues with it. Just the new notifications page is not working. You can disable the component for 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: Demo #8472
     Abe
    Keymaster

    That page template is included in sweetdate/paid memberships pro/ folder

    You just need to follow my instructions like I said above and generate PMPRO pages like it says in the documentation if you read it.
    You will have a Levels page generated that will be styled like in the 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: Add Login buttons to breadcrumb container #8470
     Abe
    Keymaster

    Hi, The code for those buttons are found in sweetdate/header.php
    The function that generates breadcrumb is found in sweetdate/functions.php kleo_show_breadcrumb()

    Copy that function to your sweetdate-child/functions.php and modify it to include the buttons

    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: not working short code #8469
     Abe
    Keymaster

    by default it takes only post formats: image, gallery, video. Change it like:
    [kleo_posts_carousel cat="72" limit="5" post_formats="all"]

    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: Restrict profile media #8468
     Abe
    Keymaster

    Hi, That is not possible by default. You need to develop this functionality. See this as a starting point for the developer: https://archived.seventhqueen.com/forums/topic/extra-membership-restrictions-how-to

    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: Overriding Members Page #8467
     Abe
    Keymaster

    Hi, Members page template is located in sweetdate/members/index.php and members-loop.php

    Cheers

    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: Translate Mailshimp Assign #8466
     Abe
    Keymaster

    Hello guys, From v2.3 version those strings should appear as translatable

    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: A couple of requests #8465
     Abe
    Keymaster

    Hello,
    Thank you, we are glad you like our theme
    1. We don’t have a solution like that but this could be a workaround: https://archived.seventhqueen.com/forums/topic/keeping-scroll-bar-on-the-last-position-when-refresh
    2. If you already found a plugin to show the menu in sidebar you can use that as well. You could have the horizontal menu with a CSS code like:

    COPY CODE
    
    .my-account #item-nav { display: none;}
    

    Cheers

    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: Notifications #8463
     Abe
    Keymaster

    There should be a plugin out there to allow changing wordpress/buddyress messages but we don’t know it 🙂

    For PMPRO: http://www.paidmembershipspro.com/documentation/member-communications/customizing-email-templates/

    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: Carsharing website #8462
     Abe
    Keymaster

    Hello, You can do it with posts if you like and users just add posts with destination details. The demo is for styling purpose. To allow users to add posts you can use Social articles plugin.
    Or set profile fields where users can add their next destination which they edit every time. This will allow to make a search based on what they enter

    Cheers

    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: Users Online Page Problem #8461
     Abe
    Keymaster

    This is the file that works for us: http://seventhqueen.com//support/files/buddypress-online.txt

    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: Three Column Formatting Issue #8460
     Abe
    Keymaster

    Hi, BP Pages will only take the default template set in Sweetdate – Buddypress
    To make activity page a 3 columns page add this code to your sweetdate-child/functions.php

    COPY CODE
    
    add_action('wp_head', 'change_activity_tpl');
    function change_activity_tpl() {
    	if (is_page('activity')) {
    		add_filter('kleo_sidebar_class', create_function('', 'return "three";'), 11);
    		add_filter('kleo_buddypress_content_class', create_function('', 'return "six";'));
    		add_action('kleo_buddypress_before_content', 'kleo_sidebar');
    		add_action('kleo_buddypress_after_content', 'kleo_extra_sidebar');
    	}
    }
    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: Removing profilemenu #8453
     Abe
    Keymaster

    You are welcome 😉

    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: Paid Memberhip Pro – Blank Page #8423
     Abe
    Keymaster

    Hello, You are getting an error for some reason. Enable errors to see what is the problem by settings WP_DEBUG to TRUE in wp-config.php

    Cheers

    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: Demo #8422
     Abe
    Keymaster

    Have you followed the instructions from the included Sweetdate documentation?
    You need to generate PMPRO pages and other steps.

    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: Blog post in the Activity stream #8419
     Abe
    Keymaster

    Hi, That can’t be related to the update. You can do a test and put the old backed up version of yours

    Cheers

    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: Re-arranging Profile Fields #8418
     Abe
    Keymaster

    Great 🙂

    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: Change text of Facebook Login button… #8416
     Abe
    Keymaster

    Thanks twoshoes, that is the best option to translate that string into english if that is your site language.

    String is in here if you want to change it in file: wp-content/themes/sweetdate/framework/functions/facebook_login.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: Remove Symbols – Homepage #8415
     Abe
    Keymaster

    Those are added in your Home page from Admin – Pages as shortcodes kleo_status_icon
    customizations are done from Sweetdate – Homepage

    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 only the "online status" on members page #8414
     Abe
    Keymaster

    THe code you pasted in bp-functions.php is correct. You need to add this missing line in members-loop.php

    That should be all beside the CSS

    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: rounded tabs in the box where you search? #8412
     Abe
    Keymaster

    🙂 that is just an example of ours to get you started if you want to have fake numbers

    The topic shows how to change all numbers; https://archived.seventhqueen.com/forums/topic/manual-number-of-members-change#reply-4520

    please read carefully before posting again

    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 - 8,401 through 8,440 (of 8,607 total)

Log in with your credentials

Forgot your details?