Forum Replies Created
-
Author
-
Radu
ModeratorHi,
Did you have tried to deactivate the child theme and to use parent theme instead to check if the issues disappear?
Did you have noticed the same on our demo?
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou’re welcome
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
This option that you wanted will be available in future theme updates only if you add the next code to child theme functions!
COPY CODEif( !function_exists( 'kleo_menu_tasks' ) ) { function kleo_menu_tasks() { $count = CTDL_Lib::get_todos(get_current_user_id(), 5000, 0)->post_count; ob_start(); ?> <a href="<?php echo get_home_url() . '/my-tasks/'; ?>"> <i class="icon-tasks-line"></i> <?php if ($count > 0) : ?> <b class="bubble"><?php echo esc_html($count); ?></b> <?php endif; ?> <span><?php esc_html_e('Tasks', 'buddyapp'); ?></span> </a> <em class="menu-arrow"></em> <ul class="submenu"> <li> <?php if ($count == 0) { echo '<span>'; } echo do_shortcode('[todolist]'); if ($count = 0) { echo '</span>'; } ?> </li> <?php if ($count > 0) : $page_link = "#"; if ($page = get_page_by_title('My Tasks')) { $page_link = get_permalink($page->ID); } ?> <li class="footer-item"> <a class="btn btn-link" href="<?php echo esc_url($page_link); ?>"> <?php esc_html_e("View all", "buddyapp"); ?> </a> </li> <?php endif; ?> </ul> <?php get_permalink(); return ob_get_clean(); } }Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just add those CSS lines
COPY CODE#ajax_search_container:before {right: 279px !important;} #ajax_search_container {left: -10px !important;}The css will be added to wp-admin -> theme options -> General settings -> Quick CSS
That’s it
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 14, 2017 at 18:30 in reply to: SliderRevolution Support and Custom Contact form integration #173677Radu
ModeratorNot marked as solutionRadu
ModeratorI see, ok then
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just add those CSS all products will look the same on desktop
COPY CODE.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { background:transparent; } @media(min-width:991px){ .woocommerce ul.products li.product h3, .woocommerce-page ul.products li.product h3 {min-height:110px;} .woocommerce ul li .kleo-woo-image.kleo-woo-front-image {min-height:160px} .kleo-woo-image.kleo-woo-back-image { display: none; } }For the single product page layout, this surest it’s caused by some wocommerce modifications templates in the child theme? try to de-activate child theme see how it looks, if it’s ok to revert the change in child theme that makes to look like that.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
According to the Steve 907 reply, they had changed something on their end in the past.
https://archived.seventhqueen.com/forums/topic/406-code-with-popup-login/#post-141757
But let me know your website to can take a closer look
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I’ve added this CSS instead.
COPY CODE.feature-text a img { display: list-item; } .kleo-block.feature-item.list-el-animated.big-icons-size.center-icons.kleo-open-href.start-animation { position: relative !important; } .icon-youtube-play:before {position:absolute;width: 100%;height: 100%;top: 30%;font-size:50px;}Adjust it for your needs and add it to rest of the pages where you need.
https://www.backupcircle.com/video_backup/
related to this
-Laura: can you pls suggest which PHP functions if not CSS is in charge of the 1″ image preview? My priority is loading video gallery fast, which it does now. if I can get rid of that lightbox preview would be super cool. ?
Can you show me a screenshot or a video about the image preview and the lightbox preview, please ?
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Now I’ve noticed that you are using an old Sweetdate theme (2.9.5) and meanwhile some translation issues were fixed, see the changelog

So our current version it’s 3.0 that includes new features, in the 3.0 version pack from theme forest you will find in MainFiles a folder named old with sweetdate 2.9.11 install that! and then check again the translations, also maybe you will have to press sync!
Let me know
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 14, 2017 at 16:27 in reply to: SweetDate isn't displaying edits or plugins on my website #173668Radu
ModeratorNot marked as solutionRadu
ModeratorHi,
So you have solved with the linked solution, right ?
Can I help you with something else?
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOn mine looks ok, re-save theme options when switching between those versions to re-generate the dynamic css file.

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You can inspire from the next snippet.
COPY CODEfunction update_my_custom_x_profile_bbpress() { global $current_user; get_currentuserinfo(); // echo '<br>Replies: '.bbp_get_user_reply_count_raw(bbp_get_reply_author_id()); // echo '<br>Topics: '. bbp_get_user_topic_count_raw(bbp_get_reply_author_id()); $user_replies_count = bbp_get_user_reply_count_raw(bbp_get_reply_author_id()); $user_topic_count = bbp_get_user_topic_count_raw(bbp_get_reply_author_id()); //xprofile_set_field_data( $field, $user_id, $value, $is_required = false ); xprofile_set_field_data('user_replies_count', $current_user->id, $user_replies_count); xprofile_set_field_data('user_topic_count', $current_user->id, $user_topic_count); } add_action('bbp_new_reply', 'update_my_custom_x_profile_bbpress';)NOTE: I haven’t tested the snippet.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
If it’s the same in default theme maybe should be related to the BuddyPress plugin directly and you could try to ask them about this.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorRemove the
COPY CODE<b> </b>tags
from that field, leave only custom-cols-order class.
Then add the css to wp-admin -> theme options -> General settings -> Quick CSS or in style.css frmo child theme ass you wish
COPY CODE@media(max-width:991px){ .custom-cols-order .vc_row {display: grid;} .float-left-flip {order: 2 !important;} .float-right-flip {order: 1 !important;} }Then add this class float-left-flip to the first column and this float-right-flip to the second.
Then in mobile those will be in reverse order
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
There is no reliable and quick mod to achieve that, I’ve tried to make a solution for them but there are more dependencies CSS rules for mobile desktop tablet etc… so no quick and reliable solution…
In future, we will take this into consideration
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just keep that in the child theme and that will remain even if you update.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorI see but I cannot reproduce that issue on my local install and also I can not any other customers reporting this issue, it seems to be an isolated case.
If you want to continue with the investigation follow my advice from this reply : https://archived.seventhqueen.com/forums/topic/404-on-pages-that-exist/#post-173261
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorI see but I cannot reproduce that issue on my local install and also I can not any other customers reporting this issue, it seems to be an isolated case.
If you want to continue with the investigation follow my advice from this reply : https://archived.seventhqueen.com/forums/topic/404-on-pages-that-exist/#post-173261
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Unable to login, the next error it’s displayed directly on wp login page.

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionSeptember 13, 2017 at 15:30 in reply to: Show chosen menu items-icons in mobile header icons #173547Radu
ModeratorI see you should have latest theme update installed ! to make those to work line on mine screenshots!
So make sure to have Version 4.2.11.
Let me know
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just use this css
COPY CODE#post-8570 .panel-heading { background-color: red !important; } #post-8570 .panel-heading .panel-title a { color: #fff !important; } #post-8570 span.icon-opened.icon-minus, span.icon-closed.icon-plus { color: #fff !important; }The css will be added to wp-admin -> theme options -> General settings -> Quick CSS
This will applied only on page id 8570 (the current page only)
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Will be included in next theme update, I’ve provided you the files until then
If you work better thru 2.9 use it instead! both versions are in ThemeForest main files pack
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 12, 2017 at 18:31 in reply to: Show chosen menu items-icons in mobile header icons #173441Radu
ModeratorHi,
Just move menu items “Live messages” and “Live notifications” to the main menu and when the users look at the site thru a mobile device those will be shown as in next screenshot

So practically they should be in the main menu and the theme will arrange them automatically for mobile view

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi again,
Replace also this file : /wp-content/themes/sweetdate/buddypress/members/index.php
with this content : https://pastebin.com/raw/5z8Tg4BF
The bp profile search should run ok now!
For the video as you can see all the shortcodes render the correct buttons
VIDEO : https://drive.google.com/file/d/0Bxo5b6iHWRMwM05uZkw4NUh4b00/view
PS: on mine not playing because this error “Refused to display ‘https://www.youtube.com/watch?v=nqhLn76kCv0&wmode=transparent’ in a frame because it set ‘X-Frame-Options’ to ‘sameorigin’.” which it’s server related I’m running on localhost
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I see but this I think it’s an isolated problem with your install since this issue cannot be reproduced on my local install, anyway my solution gives the same result as the option.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorNormally yes, if you see the same using the default theme can be caused by the limit or settings of the heartbeat
Try to install this plugin to test with lower values or higher values of heartbeat: https://wordpress.org/plugins/heartbeat-control/
the activity refresh uses the heartbeat function and if it’s turned off the activity refresh will not auto checking and pull the new stuff from the activity.
If not works also in the wp default theme install that plugin
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 12, 2017 at 17:10 in reply to: SweetDate isn't displaying edits or plugins on my website #173419Radu
ModeratorNot marked as solutionRadu
ModeratorGreat
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Let me know the correct wp admin address the FTP works.
Waiting for those, check it before providing, I’ve tried multiple but no one works.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Try to use theme_setup instead init or after_theme_setup it happens earlier than init, this may be a cause.
So replace the next line
add_action( ‘init’, ‘switch_homepage’ );
with
add_action( ‘theme_setup’, ‘switch_homepage’ );
OR
add_action( ‘after_setup_theme’, ‘switch_homepage’ );
Or you can give a try to this plugin : https://wordpress.org/plugins/bp-profile-as-homepage/
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts

