Forum Replies Created
-
Author
-
January 10, 2014 at 12:04 in reply to: In the profile page, I want to customize the space to the right of the photo #9500
Abe
KeymasterI understand what you mean but those tabs take the exact group you set in Users – Profile fields. what I said was to define a group to include the fields you want and set it to show as a tab using https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image
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
KeymasterHi, I don’t understand your question, sorrry 🙂 Please put a print-screen with the section since I haven’t seen a twitter link or so
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
KeymasterHello, You can use this plugin that takes the featured image set
http://wordpress.org/plugins/facebook-featured-image-and-open-graph-meta-tags/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
KeymasterHello,
What exactly do you mean by website desriptions? One Site description can be set from WP admin – Settings – General.
All other settings related to the theme are done in WP admin – SweetdateYou have a included documentation inside the main package downloaded from Themeforest.
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.Abe
KeymasterHello, You just need to redefine this function in your sweetdate-child/functions.php and chage the column as you like
COPY CODEfunction kleo_bp_profile_tabs() { global $bp_tabs; echo '<div class="seven columns">'; new BpMembersTabs($bp_tabs); echo '</div>'; }
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
KeymasterHi, provide a link to take a look. Any other plugin that might cause this?
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
KeymasterIf you want to add a picture like this: http://seventhqueen.com/demo/sweetdatewp-modern/
add it from Sweetdate – Homepage – ImageHi 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
KeymasterI don’t know how you are doing the tests. For example we logged in as user1, changed City visibility to Nobody. Logged in as user2, went to user1 profile -> City isn’t visible
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
KeymasterHi, see this topic on adding a new submenu to the profile menu in header: https://archived.seventhqueen.com/forums/topic/add-menu-item-to-the-profile-drop-down-menu
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.January 10, 2014 at 10:45 in reply to: Upgraded Theme Folder But Child Theme Still Says Update to 2.3.1 #9489Abe
Keymasteror to not show the version go to sweetdate-child/style.css and remove the version line
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.January 10, 2014 at 10:44 in reply to: Upgraded Theme Folder But Child Theme Still Says Update to 2.3.1 #9488Abe
KeymasterHello, Child theme doesn’t get updated since it has your customizations and will show the initial version so that is fine.
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
KeymasterGreat aladdinl
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
KeymasterCongrats. Looks really nice 😉
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
KeymasterHi, You can add this script in footer.php just before wp_footer line. This will hide the full name in the register page and because it is a require field it will take the value of username
COPY CODE<script> var url = document.location.href; jQuery(document).ready(function() { //copy profile name to account name during registration if (url.indexOf("register/") >= 0) { jQuery('label[for=field_1],#field_1, #field-visibility-settings-toggle-1').css('display','none'); jQuery('#signup_username').blur(function(){ jQuery("#field_1").val(jQuery("#signup_username").val()); }); } }); </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.Abe
KeymasterImage is added by CSS and this is the styling(you can use Inspect element in your Chrome browser to see it)
COPY CODE.membership .pricing-table.popular:after { background: url("images/pop.png") no-repeat scroll center center rgba(0, 0, 0, 0); content: ""; height: 78px; position: absolute; right: 0; top: 0; width: 78px; }
To do those changes you or a developer you hire require some HTML/CSS/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.Abe
Keymasterin wp-config.php
define ( ‘BP_ENABLE_ROOT_PROFILES’, true );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
KeymasterHi, You need to register a new menu with this function added to sweetdate-child/functions.php
COPY CODEfunction kleo_register_my_menus() { register_nav_menus( array( 'Top' => __( 'In the top bar', 'kleo_framework' ), ) ); } add_action( 'init', 'kleo_register_my_menus' );
And then in header.php add this code somewhere inside top-links div.
<?php wp_nav_menu( array( 'container' => false, 'menu_class' => 'left top_menu', 'theme_location' => 'Top', 'fallback_cb' => '', 'walker' => new sweetdate_walker_nav_menu)); ?>
and this style to Sweetdate – Styling options – Quick css
COPY CODE.top_menu {list-style: none;} .top_menu li {float:left;margin-right: 10px} .top_menu li:last-child {margin-right: 0;}
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
KeymasterHi, You should dismiss it. In Sweetdate v.2.3.1 we have updated those templates that are found in sweetdate/rtmedia
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.January 10, 2014 at 00:32 in reply to: How to install the theme updates once they are available? #9468Abe
KeymasterI mean Themeforest(TF) username. API key is found under your Themeforest account – Settings – API Keys
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
KeymasterOh. I just saw that Paid memberships pro 1.7.6 is also available and fixed this issue 🙂
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
KeymasterHi Patrick,
You are right again. This time is a PMPRO bug 🙂
but I managed to get around it. Re-download the above functions-pmpro.txt because I modified it.
Also add a translated page of Memberships Levels with the same content as English oneHi 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
KeymasterThat is included in the demo folder in revolution slider but here is the link again: http://seventhqueen.com/demo/sweetdatewp/wp-content/uploads/revslider/full_width_with_form/profile_users.jpg
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
KeymasterIt redirects me to the login 🙂
I guess you have done some template changes? otherwise that shouldn’t happen. See our demo and test with user demo password demo
http://seventhqueen.com/demo/sweetdatewp/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
KeymasterHi, See my answer here to see how you can redefine the function that generates the copyright text and echo anything else instead
https://archived.seventhqueen.com/forums/topic/add-links-to-footer#reply-5387Hi 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
KeymasterSee my answer in your similar question here: https://archived.seventhqueen.com/forums/topic/sweet-date-theme#reply-9460
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
KeymasterHi, before I submitted my answer I just did that so there is no way it doesn’t work.
Steps:
– go to Buddypress plugin from Codestyling localization
– add EN_US language if it doesn’t exist
– rescan files
– search for the strings and translate them
– click to generate the .mo file.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
KeymasterHello,
Only for performance the best way is to put it in Style.css document in the Sweetdate-child folder
The higher priority CSS has Sweetdate>Styling Options> Quick CSS meaning that if you put two stylings for the same element in 1 and 2 the one from 2 will apply.Recent posts in sidebar is a widget that is different from the normal site display.
You can use a shortcode in sidebar in the Text widget to display postsHi 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
KeymasterReally strange 🙂
Please give us a link to your site and a admin user if you can to take a look. Mark the reply as privateHi 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
KeymasterWe just installed it and did some test but no errors.
Look for javascript errors in browser consoleHi 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
KeymasterHello,
bpAlbum translation files reside in sweetdate/lib/bp-album/includes/languages
You need to copy the bp-album folder to your computer and translate it with Poedit.If you are using a child theme put the .mo and .po in sweetdate-child/languages/
The file name should follow this example: bp-album-en_US.mo or bp-album-fr_FR.moHi 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
KeymasterHi, this is another related topic: https://archived.seventhqueen.com/forums/topic/registration-and-subscription-in-the-same-time
We will think of other solutions but right now something like that is not possible
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
KeymasterHi,
Really Simple CAPTCHA doesn’t integrate with buddypress. Use one that states that like http://wordpress.org/plugins/bp-security-check/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
KeymasterThat fix I was talking about is related to some incorrect member count. To remove admin from search results: https://archived.seventhqueen.com/forums/topic/hide-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.January 9, 2014 at 17:22 in reply to: Show all profile information without clicking on the sign + #9438Abe
KeymasterHI, in wp-content/themes/sweetdate/members/single/profile/profile-loop.php you need to remove ul class=”accordion” and div class=”accordion-content” tags and customize it further if it is required
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.January 9, 2014 at 17:12 in reply to: plugin conflicts with 'event manager' & 'Really simple Facebook Twitter share' #9437Abe
KeymasterHi, Please give us a link to your site and a testing user
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
KeymasterHi, I guess you can comment line 164 from wp-content/themes/sweetdate/functions-pmpro.php to allow restricted members to view messages
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
KeymasterI think they have a paid plugin on woo 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.Abe
KeymasterHi, make the change in the child theme and in custom_buddypress/bp-functions.php replace:
require_once(get_template_directory(). ‘/custom_buddypress/class-bp-tabs.php’);
withCOPY CODElocate_template('custom_buddypress/class-bp-tabs.php', true);
And I will include this fix in next theme update so you won’t have to worry about the change in bp-functions.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.January 9, 2014 at 11:53 in reply to: In the profile page, I want to customize the space to the right of the photo #9426Abe
KeymasterYou configure your fields in Users – Profile fields
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.January 9, 2014 at 11:53 in reply to: Make groups and profiles only visible for logged-on users #9425Abe
Keymaster1. How did you add this code? It should be in sweetdate-child/functions.php at the end of the file just before the ?> line
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. -
AuthorPosts