Forum Replies Created
-
Author
-
Kieran_SQModerator
Hi,
I’m not sure why that text is being output, does the same happen if you use the fully qualified URL for the video and not youtu.be?
Either way, so long as the ID for the field stays the same you can use a little CSS to hide this
COPY CODE.field_322 p { display: none !important; }
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
You can use the below CSS to override the focus colors for the search box
COPY CODE#buddypress div.dir-search input[type=text]:focus, #buddypress li.groups-members-search input[type=text]:focus { border: 1px solid #73b953; background: #fff; }
I copied the colors of the initial state, if these are not the colors you wish to use when the search box is focused the please change the values to suit your needs.
Make sure to clear your website cache, CDN and front-end cache (Ctrl+F5) to see the changes
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
I do not see that level of transparency when I visit your site (uncached), make sure to clear your website cache to ensure you have the latest files.
You can override the strength of the transparency for the login modal with the below custom CSS. Change the 0.85 value to any number between 0.00 and 0.1 to suit your needs. The closer the number is to 0.00 the more transparent it will be.
COPY CODE.kleo-form-modal .kleo-login-wrap .before-login-form-wrapper, .kleo-form-modal .kleo-login-wrap .login-create-account-wrapper, .kleo-form-modal .kleo-login-wrap .login-form-wrapper { background-color: rgba(255, 255, 255, 0.85); }
To change the color of the inputs in the login modal please use the below CSS. Change the value from #000000 to your desired color
COPY CODE.kleo-login-wrap .login-form-wrapper .login-input-wrapper input.login-field { color: #000000; }
Make sure to purge your website cache, CDN and front-end cache (Ctrl+F5) to see the changes.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
June 17, 2018 at 16:24 in reply to: Redirect visitor to login or register page if user not logged in and restrict their access #201043Kieran_SQModeratorNot marked as solutionJune 17, 2018 at 16:16 in reply to: Could not modify search options, using BP Profile Search only #201040Kieran_SQModeratorNot marked as solutionKieran_SQModeratorHi,
You can use the below CSS to change the colors for this label
COPY CODE#profile span.label.radius.pmpro_label { background-color: red !important; color: black !important; }
Adjust to suit your needs and clear your cache(s) to see the changes.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
Please try the below CSS instead of the CSS from above. Make sure to purge your website cache and your front-end cache (Ctrl+F5) to see changes.
COPY CODE.widgets-container.sidebar_location .elementor-button { color: white !important; background-color: #7e00c4 !important; }
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
It looks like you may have some custom CSS related to buttons in Elementor already. The below CSS will override the color and background color for buttons in the sidebar
COPY CODE#main .widgets-container.sidebar_location a:not(.button) { color: #ffffff !important; background-color: #7e00c4 !important; }
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
The custom code for the field embed was indeed in the functions.php file. It’s for a field titled ‘Intro video’, replace any instances of this term if the name of your field has changed (case sensitive).
COPY CODEfunction set_video_field( $field_value ) { $bp_this_field_name = bp_get_the_profile_field_name(); //$bp_this_field_id = bp_get_profile_field_data($bp_displayed_user_id, 'Intro video'); // field name (case sensitive) if ($bp_this_field_name == 'Intro video' && isset($field_value)) { //$val = xprofile_get_field_data('1083', $bp_displayed_user_id); //$val = bp_get_profile_field_data($bp_displayed_user_id, 'Intro video'); // building the HTML and h/w of the iframe //$field_value = wp_oembed_get($field_value, array('width'=>640,'height'=>320)); //parse_str( parse_url($field_value, PHP_URL_QUERY), $my_array_of_vars ); //$video_id = $my_array_of_vars['v']; $url = parse_url($field_value); if($url['host'] == 'youtube.com' || $url['host'] == 'www.youtube.com' || $url['host'] == 'youtu.be'): $field_value = preg_match("/^(?:http(?:s)?:\/\/)?(?:www\.)?(?:m\.)?(?:youtu\.be\/|youtube\.com\/(?:(?:watch)?\?(?:.*&)?v(?:i)?=|(?:embed|v|vi|user)\/))([^\?&\"'>]+)/", $field_value, $matches); $video_id = $matches[1]; $field_value = '<iframe width="640" height="360" src="https://www.youtube.com/embed/'.$video_id.'" frameborder="0" allowfullscreen></iframe>'; echo $field_value; elseif($url['host'] == 'vimeo.com' || $url['host'] == 'www.vimeo.com'): $field_value = preg_match("https?://(?:www\.)?vimeo\.com/([0-9]{6,10})", $field_value, $matches); $video_id = $matches[1]; $field_value = '<iframe width="640" height="360" src="https://player.vimeo.com/video/'.$video_id.'" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>'; echo $field_value; //$field_value = wp_oembed_get( $field_value, array( 'width' => 640 , 'height' => 360) ); else: echo $field_value; endif; } return $field_value; //return wp_oembed_get( $field_value ); } add_filter('bp_get_the_profile_field_value','set_video_field',1);
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
June 10, 2018 at 18:36 in reply to: Members profile background and option for private messaging #200479Kieran_SQModeratorHi,
Please add the below custom CSS to your KLEO Child theme’s style.css by going to WP Admin > Appearance > Editor > KLEO Child > Style.css or via Theme Options > General Settings > Scroll to: ‘Quick CSS’
COPY CODEdiv#buddypress #item-nav .item-list-tabs ul.responsive-tabs { margin: 0 auto !important; display: inline-block; } #buddypress div.item-list-tabs#subnav ul{ margin: 0 auto !important; text-align: center; display: inline-block; }
Make sure to clear your website cache, CDN and front-end cache (Ctrl+F5) to see the changes.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
You can override the inherited colors of this element with the below custom CSS. Please add the below snippet to your KLEO Child theme’s style.css file via WP Admin > Appearance > Editor > KLEO Child > Style.css or in Theme Options > General Settings > Scroll to: ‘Quick CSS’.
COPY CODE.profile #buddypress .hr-title.hr-full.hr-double { border-color: #3c81c0; }
I used the color from your header for the example but you can change the # value to suit your needs. After saving the custom CSS clear your website cache, CDN and front-end cache to see the changes.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
Your host doesn’t seem to work too well with the new WordPress code editor so I cannot update your functions.php file via the back-end.
I can see that all of the content from functions.php has been removed, including the opening php tag, which would cause the error you were seeing.
You need to add the below original text back into the functions.php file via SFTP / FTP or your hosts file browser for this file to work properly
COPY CODE<?php /** * @package WordPress * @subpackage BuddyApp * @author SeventhQueen <themesupport@seventhqueen.com> * @since BuddyApp 1.0 */ /** * BuddyApp Child Theme Functions * Add custom code below */
Once you have added this code you can then add the WP Engine fix below it on a new line, like so
COPY CODE<?php /** * @package WordPress * @subpackage BuddyApp * @author SeventhQueen <themesupport@seventhqueen.com> * @since BuddyApp 1.0 */ /** * BuddyApp Child Theme Functions * Add custom code below */ add_action( 'wp_enqueue_scripts', 'load_buddypress_js' ); function load_buddypress_js () { if (bp_is_group() || is_page( 'activity' )) { wp_enqueue_script('buddypress_query',plugins_url() . '/buddypress/bp-core/js/jquery-query.min.js',array("jquery")); wp_enqueue_script('buddypress_members',plugins_url() . '/buddypress/bp-core/js/widget-members.min.js',array("jquery")); wp_enqueue_script('buddypress_cookie',plugins_url() . '/buddypress/bp-core/js/jquery-cookie.min.js',array("jquery")); wp_enqueue_script('buddypress_scroll', plugins_url() . '/buddypress/bp-core/js/jquery-scroll-to.min.js', array("jquery")); wp_enqueue_script('buddypress_js',get_template_directory_uri() . '/buddypress/js/buddypress.min.js',array("jquery")); } }
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
June 4, 2018 at 18:24 in reply to: CSS for changing color of default Search Field label/text #199882Kieran_SQModeratorHi,
My apologies, I should have added the placeholder CSS. Please try the below CSS
COPY CODE#ajax_search_container input::placeholder { color:#ff2f00; }
Change the # value to suit your needs and clear your caches to see the changes.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
Do you want it to be completely transparent? If so you can use the below CSS.
COPY CODE#btn-eael-lightbox-a2c5088 { color:#670ea3 !important; background-color: rgba(255, 255, 255, 0); }
You can adjust the strength of the transparency by changing the the 0 value to any number between 0.00 and 1
There is also no border for this button, so you may wish to use the below css instead which adds a semi transparent border. Adjust the 0.20 value for the border as needed using the guidance from above.
COPY CODE#btn-eael-lightbox-a2c5088 { color:#670ea3 !important; background-color: rgba(255, 255, 255, 0); border: solid 2px rgba(255, 255, 255, 0.20); }
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
June 3, 2018 at 19:27 in reply to: CSS for changing color of default Search Field label/text #199776Kieran_SQModeratorHi,
You can use the below custom CSS to target that element.
COPY CODE#ajax_search_container input{ background:#f9f9f9; color:#313131; border:solid 2px #383838; }
Change the color values to suit your needs. If you do not wish to customize the border simply remove that line in it’s entirety.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
You can try this in your functions.php file to exclude certain types of activity
COPY CODEfunction dont_save_various_activities( $activity_object ) { $exclude = array( 'new_blog_post', 'new_blog', 'new_blog_comment' ); if( in_array( $activity_object->type, $exclude ) ) $activity_object->type = false; } add_action('bp_activity_before_save', 'dont_save_various_activities', 1, 1 );
See the BuddyPress Codex for more information https://codex.buddypress.org/plugindev/bp_activity_add-2/
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
I did the plugin enable / disable test on your behalf, the issue with the page content no longer appears with this plugin disabled. You will need to contact the Essential Addons plugin author directly about this issue.
In the meantime you can use the below custom CSS to override this element
COPY CODE#btn-eael-lightbox-a2c5088 { color:#ffffff !important; background-color:#670da3 !important; }
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
That’s quite strange as the value is reflected on the front-end, you can force the issue by adding important to the custom CSS like so
COPY CODE.elementor-1013 .elementor-element.elementor-element-b2a1bdf .elementor-post__title, .elementor-1013 .elementor-element.elementor-element-b2a1bdf .elementor-post__title a { color: #85ff75 !important; }
I wasn’t sure what color you wanted to use for the read more in the post, but the CSS would be
COPY CODEa.elementor-post__read-more { color: #85ff75 !important; }
The button on the homepage doesn’t appear to come from SweetDate or Elementor – Is this from a plugin? I can’t inspect your homepage to generate the CSS, there seems to be an odd error with the content (only on home) and may be coming from this plugin. You will need to do some plugin enable/disable tests to find the cause.
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
Please use the below custom CSS in your KLEO Child theme’s style.css or within Theme Options.
COPY CODE.primary-menu.collapse.navbar-collapse.nav-collapse { float: left !important; } .secondary-menu.collapse.navbar-collapse.nav-collapse { float: right !important; }
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
Thanks for contacting us about styling specific elements within your site. I have check out the page you send and I presume you mean the custom select field above the map? If so you can use the below custom CSS in your KLEO Child theme’s style.css by going to WP Admin > Appearance > Editor > KLEO Child > Style.css or via Theme Options > General Settings > Scroll to: ‘Quick CSS’
COPY CODEselect.js-wpv-filter-trigger.form-control { color: white!important; border-color: blue!important; background-color: red; }
I have set three random colors so you can see which parts of the elements they style, I wasn’t sure what color you wanted so I didn’t set anything specific for you. To change these values from defined colors in words to # values deleted the word and replace with #000000 (where 000000 is your color value).
Don’t forget to purge your website cache, any CDN and your front-end cache (Ctrl+F5) to see the changes.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
May 26, 2018 at 16:12 in reply to: Cover Image on Groups disappears when you click on Media tab #199070Kieran_SQModeratorNot marked as solutionKieran_SQModeratorHi,
It’s not terribly difficult but will vary depending on the hosts control panel on how this is achieved. The first option for you to try yourself would be adding the below snippet to the end of your .htaccess file which will forward all traffic to your https:// site – this may or may not work depending on what is going on with your host.
COPY CODERewriteEngine On RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
You will need to connect to your site via your hosts file browser or SFTP/FTP to get access to this file and it will be found in the main WordPress directory.
If this has been completed and you’re successfully sent from cristea.ch to https://cristea.ch every time then you can go to WP Admin > Settings > General and set your site URL as https://cristea.ch
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
When I do a search for Homeowner looking for Cleaning Helper I get 5 results
COPY CODEAdmin Batsheva shayna Rachel Stein Miriam12
All five of those results have set that they’re a Homeowner looking for a Cleaning Helper and are what I would expect to be returned.
Can you please send me a screenshot of your search results for the same query.
Thanks,
Kieran
Edit: The user Batsheva has set they are and are looking for ‘Homeowner needing cleaning’ so there will be issues with this user and search results. Users kate, eastcrow and whatsername do not have any values set for these fields so should not return in the results.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Attachments:
You must be logged in to view attached files.Kieran_SQModeratorHi,
From my understanding you wish to display footer sidebars 1 and 2 at 75% and 25% respectively and not show footer sidebars 3 and 4. If this is the case please add the below CSS to your KLEO Child theme’s style.css by going to WP Admin > Appearance > Editor > KLEO Child > Style.css or alternatively in Theme Options > General Settings > Scroll to: ‘Quick CSS’
COPY CODE#footer .col-sm-3:nth-child(1) { width: 75%; } #footer .col-sm-3:nth-child(2) { width: 25%; } #footer .col-sm-3:nth-child(3) { display:none; } #footer .col-sm-3:nth-child(4) { display:none; }
Once you have saved this CSS make sure to completely purge your website cache, any CDN as well as your front-end cache (Ctrl+F5) to see the changes.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
You can use the below CSS to set the height automatically on small screens
COPY CODE@media only screen and (max-width: 940px) { .directory .search-item .author { height: auto; } }
Also, you have updated BuddyPress to 3.0 and you may experience issues as SweetDate is not yet compatible with the latest, vast, changes to BuddyPress. If you experience any issue please follow the below steps
Restore BuddyPress 2.9.4
– Download BuddyPress 2.9.4 here https://downloads.wordpress.org/plugin/buddypress.2.9.4.zip
– Extract the .zip folder on your computer
– Connect to your site via SFTP / FTP and navigate to /wp-content/plugins/
– Delete the contents of the /buddypress/ folder within /wp-content/plugins/
– Upload the contents of the extracted .zip file into the /buddypress/ folder
– Clear your website cache, CDN and your front-end cache (Ctrl+F5)
– Await an update to SweetDate for BuddyPress 3.0Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
Please use the below custom CSS in conjunction with the above to ensure images within this div are aligned center.
COPY CODE#wpa_bp_achievements_hold img { float: unset; }
If you’d like to give the images a little more breathing room and sit better within the content please try the below CSS instead
COPY CODE#wpa_bp_achievements_hold img { float: unset; margin-top: 15px; }
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
It is indeed a CSS issue with the plugin, please try the below CSS in your KLEO Child theme’s style.css by going to WP Admin > Appearance > Editor > KLEO Child > Style.css or in Theme Options > General Settings > Scroll to: ‘Quick CSS’
COPY CODE#wpa_bp_achievements_hold { margin-left: auto; margin-right: auto; }
This CSS will make the content sit better within the space. You can adjust the width of the plugin content from it’s current settings by using the below CSS instead of the above. Change 450px to suit your needs.
COPY CODE#wpa_bp_achievements_hold { max-width: 450px !important; margin-left: auto; margin-right: auto; }
Make sure to purge your website cache, CDN and local cache (Ctrl+F5) to see any changes.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
May 16, 2018 at 04:35 in reply to: Can’t Move Login/Register Button Away from Edge of screen #197860Kieran_SQModeratorHi,
I have added the below CSS to WP Admin > Appearance > Editor > KLEO Child > Style.css to center the text and add a margin top and bottom. Make sure to purge your front-end cache (Ctrl+F5) to see the changes. Let me know if this looks okay to you.
COPY CODE.pmpro-body-level-required .pmpro_content_message { margin-left: auto; margin-right: auto; width: 50%; text-align: center; margin-top: 40px; margin-bottom: 40px; }
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
I have added the below custom CSS to WP Admin > Appearance > Editor > SweetDate Child > Style.css for you to reduce the space used by the tabs. Realistically it isn’t possible to make this smaller as they would loose their look and feel.
COPY CODE.bp-user .tabs dd a { padding: 0 8px; } .bp-user .tabs.pill.custom dd a { height: 33px; line-height: 33px; } .bp-user .tabs.pill.custom dd { margin-right: 5px; margin-bottom: 10px; }
I cannot find the issue in regards to the members page multiple search forms and will therefore refer this ticket to a higher support level to assist you with this. They’ll be in touch with you as soon as they can, Monday to Friday, East European Time.
Thank you for your patience,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
-
AuthorPosts