Forum Replies Created
-
Author
-
Laura
ModeratorHello, took off all the padding of your content as you wanted, there is not much more i can do
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorIt was a pleasure 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 17, 2015 at 02:40 in reply to: Search quantity in form and add another social network #82898Laura
ModeratorHello, seems to be a bit complicated, i would suggest to stay as is or maybe buy the ajax search pro plugin
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, in theme settings you should be able to select the buddypress slider layout, all buddypress pages share the same sidebar, Buddypress sidebar
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by adding this to bp-custom.php in plugins folder
COPY CODE/** * Change BuddyPress default Members landing tab. */ define('BP_DEFAULT_COMPONENT', 'profile' );Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, this would require some time and development, i suggest to hire a developer to do it for you 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 17, 2015 at 02:18 in reply to: How to hide specific members from appearing in Member Directory #82894Laura
ModeratorHello, for the admin:
Add this to child theme functions.php
1. – Deny access to admins profileCOPY CODE// deny access to admins profile. User is redirected to the homepage function bpfr_hide_admins_profile() { global $bp; if(bp_is_profile && $bp->displayed_user->id == 1 && $bp->loggedin_user->id != 1) : wp_redirect( home_url() ); exit; endif; } add_action( 'wp', 'bpfr_hide_admins_profile', 1 );2. – Remove admin from the member directory and recount members
COPY CODE// Remove admin from the member directory function bpdev_exclude_users($qs=false,$object=false){ $excluded_user='1'; // Id's to remove, separated by comma if($object != 'members' && $object != 'friends')// hide admin to members & friends return $qs; $args=wp_parse_args($qs); 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; } add_action('bp_ajax_querystring','bpdev_exclude_users',20,2); // once admin is removed, we must recount the members ! function bpfr_hide_get_total_filter($count){ return $count-1; } add_filter('bp_get_total_member_count','bpfr_hide_get_total_filter');3. – Hide admin’s activities from all activity feeds
COPY CODE// hide admin's activities from all activity feeds function bpfr_hide_admin_activity( $a, $activities ) { // ... but allow admin to see his activities! if ( is_site_admin() ) return $activities; foreach ( $activities->activities as $key => $activity ) { // ID's to exclude, separated by commas. ID 1 is always the superadmin if ( $activity->user_id == 1 ) { unset( $activities->activities[$key] ); $activities->activity_count = $activities->activity_count-1; $activities->total_activity_count = $activities->total_activity_count-1; $activities->pag_num = $activities->pag_num -1; } } // Renumber the array keys to account for missing items $activities_new = array_values( $activities->activities ); $activities->activities = $activities_new; return $activities; } add_action( 'bp_has_activities', 'bpfr_hide_admin_activity', 10, 2 );For the premium accounts this would require some extra time and development, i suggest to hire a developer to do it for you 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, you could check the post revisions to see what changed or to restore one
If not working let me know and i will check it outHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, will assign the ticket to a higher support lever who can help and advise you in your query.
Thanks! 🙂Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, glad you could resolve it! 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, right now that is not possible, maybe in a future update, or by hiring a developer 🙂 The restrictions of sweetdate menu are controlled by the sweetdate pmpro functions
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, i see the issue, its because of the man and woman field
In i am a, you have 2 options, man and woman
So in looking for a, you should have THE SAME options (same name) of i am a, so the script can work correctlyHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 16, 2015 at 23:43 in reply to: unable to login to backend after activation of buddy press #82837Laura
ModeratorHello, could you please let me know how do you example “disable buddypress” Because the issue is again related to the database, the database is broken again, how do you exacly disable buddypress? By editing the database?
Please let me know so i can help you on this.
Buddypress doesnt change nothing in the database to broke it, it seems like something changed it.
The way to disable a plugin by cpanel is going to ftp files and renaming the plugin folder inside wp-content/plugins
To resolve this issue i need to know what did you do to disable the plugin, exactly, so i can fix it and then check out why buddypress doesnt let you go to backendHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, changed 🙂
To add this to any other website, you should paste it in text editor as:COPY CODE[vc_accordion collapsible="" disable_keyboard="" icons_position="to-left" active_tab="false"][vc_accordion_tab icon="play-circled" icon_closed="play-round-circled" tooltip_position="left" tooltip_action="hover" title="Explore the Woodbriar Advantage" el_id="videorow"][vc_raw_html] JTNDZGl2JTIwY2xhc3MlM0QlMjJ2aWRlb2QlMjIlM0UlM0NpZnJhbWUlMjB3aWR0aCUzRCUyMjg1MyUyMiUyMGhlaWdodCUzRCUyMjQ4MCUyMiUyMHNyYyUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LnlvdXR1YmUuY29tJTJGZW1iZWQlMkZGdG9tX2U3TFJpQSUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRSUzQyUyRmlmcmFtZSUzRSUzQyUyRmRpdiUzRQ== [/vc_raw_html][vc_raw_html] JTNDZGl2JTIwY2xhc3MlM0QlMjJtb2JpbGV2JTIyJTNFJTNDaWZyYW1lJTIwd2lkdGglM0QlMjI4NTMlMjIlMjBoZWlnaHQlM0QlMjIxMDAlMjUlMjIlMjBzcmMlM0QlMjJodHRwcyUzQSUyRiUyRnd3dy55b3V0dWJlLmNvbSUyRmVtYmVkJTJGRnRvbV9lN0xSaUElMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0UlM0MlMkZkaXYlM0U= [/vc_raw_html][/vc_accordion_tab][/vc_accordion]And in the page CSS
COPY CODE.panel1 .panel-title a { color: white !important; } .panel1 .wpb_wrapper { background-color: #236a95; } .panel1 .panel { background-color: #236a95 !important; } .panel1 .panel { margin-left: 2%; } .panel1 .panel { border: none !important; } span.icon-closed.icon-play-round-circled:before { margin-top: 3%; position: absolute; margin-left: 46.6% !important; color: white; font-size: 23px; } .panel-heading { height: 80px; } span.icon-opened.icon-play-circled:before { margin-top: 3%; position: absolute; margin-left: 46.6% !important; color: white; font-size: 23px; } .wpb_video_wrapper { width: 70%; margin-left: 13%; } .panel-body { border: none !important; } .text4 a:hover { color: #236A95 !important; } .testimonial-meta { font-size: 14px !important; } .post-meta { display: none !important; } .news-highlight article { width: 49% !important; float: left; padding-right: 15px; } @media (max-width: 991px) { span.icon-closed.icon-play-round-circled { margin-top: 8% !important; margin-left: -5% !important; } span.icon-opened.icon-play-circled { margin-top: 8% !important; margin-left: -5% !important; } .mobilev { display:block !important; } .videod { display:none; } span.icon-closed.icon-play-round-circled:before { margin-top: -3% !important; } span.icon-opened.icon-play-circled:before { margin-top: -3%; } } .mobilev { display:none; }Also attached as a text file
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Attachments:
You must be logged in to view attached files.Laura
ModeratorHello, understood 🙂 Working on it now
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, i could fix the menu issue for that size if you prefer, changing the mobile menu to appear early would be a lot of work
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, for 3 i think its a cache or browser issue because i do not see it, have you tried with another device?
for 1, Envato handle the licenses, we cannot do nothing, so to have the same theme for 15 sites you do need the extended license.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, i see… hmm maybe this https://wordpress.org/plugins/voter-plugin/
Or you could test with ratings instead of votes like https://wordpress.org/plugins/rating-widget/Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, your test is private, you can go ahead and post your ftp credentials 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, it seems to be related to the slider background image, i could check it out for you, can you share admin credentials in a private reply?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, have you tested the following plugin? https://wordpress.org/plugins/buddypress-usernames-only/
It should do it 🙂
Let me knowHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please let me know more details so i can help you.
To edit sliders you should go to Revolution Slider
And a list of sliders should appear, then you will be able to edit, delete, import 🙂Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, i am very sorry that you encountered this issue, it could have been related to the child theme modifications, so the solution would have been deleting the file.
I understand how you feel, but i would encourage you to continue using this support forum if you have any issue, because we will be glad to help you, if you prefer to be helped by someone else i will also understand.
Thanks youHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, will assign the ticket to a higher support lever who can help and advise you in your query.
Thanks! 🙂Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try by adding this to your functions.php :
COPY CODEif( is_user_logged_in() ) { } else { echo ' <style> ul#menu-sweetdate { display: none !important; } </style> '; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, yes we have an HTML version at http://themeforest.net/item/sweet-date-premium-landing-page-for-lovers/4285315?ref=KGuMiHo
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, i do not see that message, i suppose you could resolve it? 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorGlad it helped! 🙂 I will be here if you need anything else
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, deleted the cart icon 🙂
For the products, sadly you can only link 1 woocommerce product to your courses, not 2, please see attachedHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Attachments:
You must be logged in to view attached files.Laura
ModeratorHello, glad you could resolve it! I will be here if you need anything more, just start a topic and call me 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, the feature product should enable the products to appear in the feature product slider, what kind of badge do you want it to have?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please let me know once i can check it out 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, i see, it may be related to the php email, try by installing this plugin (attached) and configure it with your server smtp settings:
Go to your hosting account cpanel, to email, create an email for your domain if you still dont have one, next to the options of the email, you should see a More button (or something like that ) Select configure mail, a new window should appear, scroll down to find your email server credentials, one should be secure and the other non secure, first try the secure one, find “SMTP PORT” now in your plugin settings, in server add the email server (appears in the page we were before) the email username ( usually is the full email) and the email password ( usually cpanel password )
Finally add the SMTP PORT and save, try now a test email or create an user and see if it shows. If it doesnt, try the steps again but with non secure sectionHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Attachments:
You must be logged in to view attached files.October 16, 2015 at 03:41 in reply to: Search quantity in form and add another social network #82603Laura
ModeratorHello, for search i will need wp admin credentials 🙂
I have added the tripadvisor icon, now you would need to go to Child theme > page-parts > general-header-section.phpEdit that file and change the links below:
1- The image source for the icon
2- The link where the icon points toHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Attachments:
You must be logged in to view attached files.Laura
ModeratorHello, glad you could find a solution 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, for 1: this is not possible right now.
2: Did you add them to social info section? About footer you will need to add a widget 🙂
3: Check out: https://archived.seventhqueen.com/forums/topic/fake-number-of-membersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, the theme adds a style to buddypress plugin, it doesnt add the members functionality or register functionality, it just styles it. As for paid support, we sell the theme not the support, it was optional for us to offer support to our customers, so its actually free 🙂
I will try to help you on this as much as i can with the resources that wordpress gives, right now we need to focus on plugins and those are the ones available.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, could you share admin credentials so i can check it out? 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 16, 2015 at 03:05 in reply to: input grew-up on the click and we got a button problem #82597Laura
ModeratorHello, no problem, i will be here if you need anything 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, can you link me to the page so i can inspect it? 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
-
AuthorPosts

