Forum Replies Created
-
Author
-
SQadminKeymaster
Hello,
You can try this plugin:
http://wordpress.org/plugins/bp-registration-options/Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Yes, to make the site look like our demo, as a starting point, import the demo content.
You have instructions in Documentation -> Demo content.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
To hide Admin profile you could add this snippet to your sweetdate-child/functions.php:COPY CODEadd_action('bp_init', 'kleo_private_admin'); function kleo_private_admin(){ global $bp; if(is_super_admin()) { remove_action("wp_head","bp_core_record_activity"); //id SM is on, remove the record activity hook //then remove the last activity, if present delete_user_meta($bp->loggedin_user->id, 'last_activity'); } } add_action('bp_ajax_querystring','kleo_exclude_users',20,2); function kleo_exclude_users($qs=false,$object=false) { //list of users to exclude $excluded_user='1';//comma separated ids of users whom you want to exclude if($object!='members')//hide for members only return $qs; $args=wp_parse_args($qs); //check if we are listing friends?, do not exclude in this case if(!empty($args['user_id'])) return $qs; if(!empty($args['exclude'])) $args['exclude']=$args['exclude'].','.$excluded_user; else $args['exclude']=$excluded_user; $qs=build_query($args); return $qs; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
We have planned to release the membership update in August. It will probably also include that. We’ll keep you postedHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterFrench translation added thanks to LeBruCOde.
Download French translationHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterThank you. We appreciate it.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Please follow the instructions from the documentation to install demo content if you want to have a starting point and make your theme look like our demo.
Let me know if you need any help
Regards,
GabrielHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
To change from rounded to squared we have added in 1.4.1 version an option from admin to switch from one to another.
If you want to do it right away, add this in Sweetdate -> Styling options > Quick css:COPY CODE.avatar,.attachment-shop_thumbnail,.carousel-profiles li,.carousel-profiles img,.buddypress.widgets ul.item-list .item-avatar,.buddypress.widgets .avatar-block .item-avatar,#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, .search-item .avatar img { border-radius: 3px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHello,
1. make sure to have 1.4 version of the theme
2. There is already a topic here: https://archived.seventhqueen.com/forums/topic/cant-custom-color-for-search-box-itemsWe have tested the avatars on mobile and they are rounded. On what device are you testing?
Thanks
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, you can put in quick css box:
COPY CODE.row { width: 1170px; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterOh I see what you mean now 🙂
I have the car-sharing style right here:
http://pastebin.com/pvRCsyBSHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHello,
You just need to re-download the pack with the theme from Themeforest. Extract it and you’ll have the new updated to 1.4 in WordPress folder.
If you haven’t modified files in the theme just replace your old files. You can make a backup of your old file just to be sure.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
You have to edit the header background,primary button colors and every color that is blueish from Styling optionsHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
I don’t know what your code looks like. Please give more details on your problems.
You should end up having:COPY CODEfunction render_user_search() { if (is_page_template('page-templates/front-page.php') AND sq_option('home_search',1) == 1) echo do_shortcode('[my_shortcode]'); }
Like I said, this is an example and you need to put an actual shortcode there.
RegardsHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
I saw it now.. try finding a plugin to do that.
I will also look and let you know if I can find anythingHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterThis is more a Mailchimp setting. Try going into your account and see there if you find any setting
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
We figured it out and it seems that was a problem in templates before 1.8 that the request-members page wasn’t loading.
We fixed this and will include it in our 1.4.1 update this week.
If you want to fix it untill then:
– Open groups/single/home.php
– Go to line 87 and replace it with this:COPY CODElocate_template( array( 'groups/single/request-membership.php' ), true );
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYou can find plenty of info there. For example if you want to make the site to look just like the demo, you can import the demo content and you’ll have a starting point. For Buddypress also there are some instructions there, you have to activate the plugin then all you need to do is to map your site pages to Buddypress from Settings -> Buddypress.
Let us know if we can help you with more info.
Regards,Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
For now you can’t reset just the colours. One trick you could try to export the settings and you’ll get an serialized array of values. Remove the ones you want to get rid of and import it.
Anyway we thought on adding this and done some test.. so probably in will be included in an upcoming updateHome page image size should be enough at 1200×800 resolution.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHello,
You need to set it from Settings -> Permalinks.Regards,
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
I tested it again and it works. Do a Ctrl+a to copy all text from the raw code page.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
We are making this the default functionality in version 1.4.1 that will be released this weekHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHello,
We haven’t modified anything related to that. Have you installed some plugins? Can you give us access so we can take a look? Send us an email with access data to themesupport@seventhqueen.com
ThanksHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, From the documentation folder open index.html to view the documentation. That documentation doesn’t help?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
For the breadcrumb:
you can go and copy header.php to your activated sweetdate-child theme and modify it around line 189
before:COPY CODE<section> <div id="breadcrumbs-wrapp"> <div class="row"> <div class="nine columns"> <?php kleo_breadcrumb(array('container_class' => 'breadcrumbs hide-for-small')); ?> </div> <?php do_action('kleo_after_breadcrumb'); ?> </div><!--end row--> </div><!--end breadcrumbs-wrapp-->
after:
COPY CODE<section> <div id="breadcrumbs-wrapp"> <div class="row"> <div class="nine columns"> </div> <?php do_action('kleo_after_breadcrumb'); ?> </div><!--end row--> </div><!--end breadcrumbs-wrapp-->
The translation strings should be there. Try using CodeStyling Localization plugin for translating strings
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterOk. I’ll remove it then if you have something better. Thanks
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterFrench translation added. Many thanks to ebenelove:
EDIT — Translation removed because it was incompleteHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Give us a link to your site on the email if you don’t want to make it public
themesupport@seventhqueen.comHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHello and thank you.
You can set up your to menu from Appearance -> Menus and maybe it contains some old pages. Try and removing and adding the pages again.
Also in order for the buddypress pages to work you need to go to Settings -> Buddypress and assign your pages there.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterTry going to Appearance – Permalinnks and click to save options even though you haven”t modified settings
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterI will do some tests with not activated users. Will let you know
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
This is a quick one 🙂
You need to have the sweetdate-child theme activated.
Open sweetdate-child/functions.php and add this remove action to the remove_actions function:
remove_action(‘kleo_after_breadcrumb’, ‘bp_add_profile_navigation’);So it looks like this:
COPY CODEadd_action('after_setup_theme','kleo_remove_actions'); /** * Override existing actions * Use these functions to replace/remove existing actions * @since Sweetdate 1.3 */ function kleo_remove_actions() { remove_action('kleo_after_breadcrumb', 'bp_add_profile_navigation'); }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi. I see you already created a topic. Check the answer there
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
If you upload the theme by FTP you need to put the theme unzipped files into the wp-content/themes folder
Follow the documentation guide. Unzipped files should have the style.css in that folder.You should talk at your hosting company to increase the php timeout. This can’t be a theme problem.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
I think it is a paste problem.
It should work with this:
http://pastebin.com/pvRCsyBSTry copying the raw code.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Here is a printscreen with our Mailchimp list:Hope it helps
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
We have exported the style settings from car-sharing demo for you to import in Sweetdate-> Import/Export. Click on Import from text, then Import.
You will lose any settings you have previously set.COPY CODE###a:91:{s:8:"last_tab";s:21:"import_export_default";s:4:"logo";s:95:"http://seventhqueen.com/demo/sweetdatewp-travel/wp-content/uploads/2013/07/logo_car_sharing.png";s:11:"logo_retina";s:98:"http://seventhqueen.com/demo/sweetdatewp-travel/wp-content/uploads/2013/07/logo_car_sharing@2x.png";s:10:"small_logo";s:89:"http://seventhqueen.com/demo/sweetdatewp-travel/wp-content/uploads/2013/07/small_logo.png";s:7:"favicon";s:0:"";s:7:"apple57";s:0:"";s:8:"apple114";s:0:"";s:7:"apple72";s:0:"";s:8:"apple144";s:0:"";s:9:"analytics";s:0:"";s:17:"responsive_design";s:1:"1";s:10:"site_style";s:11:"boxed-style";s:16:"boxed_background";a:9:{s:4:"type";s:7:"pattern";s:7:"pattern";s:2:"p1";s:5:"image";s:0:"";s:10:"img_repeat";s:6:"repeat";s:12:"img_vertical";s:3:"top";s:14:"img_horizontal";s:6:"center";s:8:"img_size";s:4:"auto";s:14:"img_attachment";s:6:"scroll";s:5:"color";s:7:"#020202";}s:14:"global_sidebar";s:5:"right";s:11:"sticky_menu";s:1:"1";s:11:"ajax_search";s:1:"1";s:17:"header_background";a:9:{s:4:"type";s:5:"image";s:7:"pattern";s:4:"blue";s:5:"image";s:0:"";s:10:"img_repeat";s:9:"no-repeat";s:12:"img_vertical";s:6:"center";s:14:"img_horizontal";s:6:"center";s:8:"img_size";s:7:"contain";s:14:"img_attachment";s:6:"scroll";s:5:"color";s:7:"#3f375d";}s:17:"header_font_color";s:7:"#ffffff";s:20:"header_primary_color";s:7:"#ffffff";s:18:"menu_color_enabled";s:7:"#ffffff";s:18:"menu_primary_color";s:7:"#584e7c";s:22:"header_secondary_color";s:7:"#ffffff";s:20:"menu_secondary_color";s:7:"#47406d";s:17:"breadcrumb_status";s:1:"1";s:21:"breadcrumb_background";a:9:{s:4:"type";s:5:"color";s:7:"pattern";s:4:"blue";s:5:"image";s:0:"";s:10:"img_repeat";s:6:"repeat";s:12:"img_vertical";s:3:"top";s:14:"img_horizontal";s:6:"center";s:8:"img_size";s:4:"auto";s:14:"img_attachment";s:6:"scroll";s:5:"color";s:7:"#2b2348";}s:21:"breadcrumb_font_color";s:7:"#f0f0f0";s:24:"breadcrumb_primary_color";s:7:"#ffffff";s:26:"breadcrumb_secondary_color";s:7:"#584e7c";s:15:"body_background";a:9:{s:4:"type";s:5:"color";s:7:"pattern";s:4:"gray";s:5:"image";s:0:"";s:10:"img_repeat";s:6:"repeat";s:12:"img_vertical";s:3:"top";s:14:"img_horizontal";s:6:"center";s:8:"img_size";s:4:"auto";s:14:"img_attachment";s:6:"scroll";s:5:"color";s:7:"#ffffff";}s:15:"body_font_color";s:7:"#777777";s:18:"body_primary_color";s:7:"#333333";s:20:"body_secondary_color";s:7:"#3f375d";s:18:"sidebar_font_color";s:7:"#777777";s:21:"sidebar_primary_color";s:7:"#666666";s:23:"sidebar_secondary_color";s:7:"#3f375d";s:17:"footer_background";a:9:{s:4:"type";s:7:"pattern";s:7:"pattern";s:5:"black";s:5:"image";s:0:"";s:10:"img_repeat";s:6:"repeat";s:12:"img_vertical";s:3:"top";s:14:"img_horizontal";s:6:"center";s:8:"img_size";s:4:"auto";s:14:"img_attachment";s:6:"scroll";s:5:"color";s:7:"#000000";}s:17:"footer_font_color";s:7:"#777777";s:20:"footer_primary_color";s:7:"#f00056";s:22:"footer_secondary_color";s:7:"#3f375d";s:15:"button_bg_color";s:7:"#332b50";s:17:"button_text_color";s:7:"#ffffff";s:21:"button_bg_color_hover";s:7:"#3f375d";s:23:"button_text_color_hover";s:7:"#ffffff";s:25:"button_secondary_bg_color";s:7:"#E6E6E6";s:27:"button_secondary_text_color";s:7:"#1D1D1D";s:31:"button_secondary_bg_color_hover";s:7:"#DDDCDC";s:33:"button_secondary_text_color_hover";s:7:"#1D1D1D";s:7:"heading";a:7:{s:2:"h1";a:4:{s:4:"size";s:4:"46px";s:4:"font";s:12:"Lato:regular";s:5:"style";s:6:"normal";s:5:"color";s:7:"#222222";}s:2:"h2";a:4:{s:4:"size";s:4:"30px";s:4:"font";s:12:"Lato:regular";s:5:"style";s:6:"normal";s:5:"color";s:7:"#222222";}s:2:"h3";a:4:{s:4:"size";s:4:"26px";s:4:"font";s:12:"Lato:regular";s:5:"style";s:6:"normal";s:5:"color";s:7:"#222222";}s:2:"h4";a:4:{s:4:"size";s:4:"20px";s:4:"font";s:17:"Open Sans:regular";s:5:"style";s:6:"normal";s:5:"color";s:7:"#222222";}s:2:"h5";a:4:{s:4:"size";s:4:"17px";s:4:"font";s:17:"Open Sans:regular";s:5:"style";s:6:"normal";s:5:"color";s:7:"#222222";}s:2:"h6";a:4:{s:4:"size";s:4:"14px";s:4:"font";s:17:"Open Sans:regular";s:5:"style";s:6:"normal";s:5:"color";s:7:"#222222";}s:4:"body";a:4:{s:4:"size";s:4:"13px";s:4:"font";s:17:"Open Sans:regular";s:5:"style";s:6:"normal";s:5:"color";s:7:"#777777";}}s:9:"quick_css";s:415:".rtmedia-container .rtmedia-action-buttons span { background: #fff !important; border: none !important; border-radius: 50% 50% 50% 50%; color: #333 !important; display: inline-block !important; font-size: inherit !important; margin-left: 0 !important; padding: 0 !important; width: 15px; height: 15px; line-height: 15px; margin-top: -4px; text-align: center; } ";s:11:"home_search";s:1:"1";s:19:"home_search_members";s:1:"1";s:19:"home_pic_background";a:9:{s:4:"type";s:5:"image";s:7:"pattern";s:5:"green";s:5:"image";s:91:"http://seventhqueen.com/demo/sweetdatewp-travel/wp-content/uploads/2013/07/hitch_hiking.jpg";s:10:"img_repeat";s:9:"no-repeat";s:12:"img_vertical";s:3:"top";s:14:"img_horizontal";s:6:"center";s:8:"img_size";s:5:"cover";s:14:"img_attachment";s:6:"scroll";s:5:"color";s:7:"#332b50";}s:8:"bp_album";s:1:"1";s:18:"buddypress_sidebar";s:5:"right";s:14:"bp_search_form";a:9:{s:11:"before_form";s:156:"Find others going your way so you can Car-Share together.<br><small>Save money, cut your carbon and have fun! Great for both drivers and passengers.</small>";s:6:"fields";a:4:{i:0;s:2:"65";i:1;s:3:"162";i:2;s:1:"3";i:3;s:1:"6";}s:22:"before_form_horizontal";s:0:"";s:17:"fields_horizontal";a:3:{i:0;s:3:"162";i:1;s:1:"3";i:2;s:1:"6";}s:11:"button_show";s:1:"1";s:8:"agerange";s:1:"0";s:8:"agelabel";s:3:"Age";s:8:"numrange";s:1:"0";s:6:"match1";a:2:{i:1;s:1:"0";i:2;s:1:"0";}}s:12:"bp_sex_field";s:1:"0";s:12:"bp_age_field";s:1:"0";s:20:"buddypress_age_start";s:2:"18";s:18:"buddypress_age_end";s:2:"75";s:18:"buddypress_perpage";s:2:"12";s:20:"bp_header_background";a:9:{s:4:"type";s:5:"color";s:7:"pattern";s:4:"gray";s:5:"image";s:0:"";s:10:"img_repeat";s:6:"repeat";s:12:"img_vertical";s:3:"top";s:14:"img_horizontal";s:6:"center";s:8:"img_size";s:4:"auto";s:14:"img_attachment";s:6:"scroll";s:5:"color";s:7:"#332b50";}s:20:"bp_header_font_color";s:7:"#ffffff";s:23:"bp_header_primary_color";s:7:"#ffffff";s:25:"bp_header_secondary_color";s:7:"#584e7c";s:21:"bp_items_transparency";s:3:"0.1";s:11:"owner_email";s:0:"";s:11:"owner_phone";s:0:"";s:7:"twitter";s:0:"";s:8:"facebook";s:0:"";s:10:"googleplus";s:0:"";s:9:"pinterest";s:0:"";s:8:"linkedin";s:0:"";s:7:"gps_lat";s:0:"";s:7:"gps_lon";s:0:"";s:9:"fb_app_id";s:0:"";s:13:"mailchimp_api";s:0:"";s:10:"terms_page";s:1:"#";s:12:"privacy_page";s:1:"#";s:11:"tf_username";s:0:"";s:9:"tf_apikey";s:0:"";s:16:"tdf_consumer_key";s:0:"";s:19:"tdf_consumer_secret";s:0:"";s:16:"tdf_access_token";s:0:"";s:23:"tdf_access_token_secret";s:0:"";s:17:"tdf_user_timeline";s:0:"";s:16:"tdf_cache_expire";s:0:"";s:10:"social_top";i:0;s:9:"admin_bar";i:0;s:14:"facebook_login";i:0;s:17:"facebook_register";i:0;s:18:"squeen-opts-backup";s:1:"1";}###
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterTry going to Settings – Permalinks and save the options even though you don’t change anything. This happens sometimes with WordPress.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
You have to go to Appearance – Widgets and select the mailing list that you want to use in your Mailchimp widget.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
I am thinking that maybe members haven’t activated their account. Try installing this plugin and check there:
http://wordpress.org/plugins/buddypress-pending-activations/Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts