Forum Replies Created

Viewing 40 posts - 14,921 through 14,960 (of 20,101 total)
  • Author
  • in reply to: Few question related to theme layout #114627
     Radu
    Moderator

    Hi,

    The counter for what you need is something custom and you will have to develop some functions that count what you need.

    And the function should look like this

    COPY CODE
    add_filter('header_profile_dropdown', 'my_profile_link');
    function my_profile_link($links) {
    	$links[] = '<li><a href="' . bp_loggedin_user_domain().'egifts/" rel="nofollow"><small class="label">your_custom_fuction_to_count()</small>eGifts</a></li>';
    	$links[] = '<li><a href="' . bp_loggedin_user_domain().'following/" rel="nofollow">My Favorite<small class="label">your_custom_fuction_to_count()</small></a></li>';
    	return $links;
    }

    You should build your functions to count what you need.

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Change Text – Share This #114521
     Radu
    Moderator

    Hi,

    Theme strings and plugins strings can easily be changed by using Loco Translate plugin https://wordpress.org/plugins/loco-translate/

    A small introduction on how translations work

    Translatable strings can come from the theme or from the installed plugins. You need to translate the theme or the plugin depending on what section of the site your string is found.

    For example if your string is on your BuddyPress profile then most probably you will need to translate BuddyPress plugin. If you are on the Forums section of your site then bbPress plugin should be the one that needs to be translated. Another example is the rtMedia plugin that adds the Media links to BuddyPress and if you want to translate it then this plugin will contain the string.

    Follow these steps to get you started:

    • Install Loco Translate plugin
    • Go to the plugin dashboard: WP Admin – Tools – Manage translations
    • Find the theme or plugin in the list.
    • If the language isn’t already in the list then click Add new language, choose your language and if you are asked where you want to save the language files choose global language directory ( wp-content/languages/ ).
    • Press SYNC button to synchronise your translation with the provided .pot file
    • Search for the string you want to translate and add your translated string.
    • Press Save when you finished your translation.

    Note: You will have to set the language for your blog from WP-admin – Settings – General – Site Language – Choose your language

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: message icon color #114518
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> styling options -> quick css

    COPY CODE
    table#message-threads li span.unread-count, tr.unread span.unread-count {
        background: yellowgreen; 
    }

    REplace yellowgreen with your color

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: FB app #114516
     Radu
    Moderator

    Hi,

    See first answer http://stackoverflow.com/questions/30085246/app-not-setup-this-app-is-still-in-development-mode

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    I see your contact page works,no 404 error, and the form is there, do you have solved the issue ?

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Layout too wide on Newsfeed #114511
     Radu
    Moderator

    Hi,

    The layout from second screenshot appears after you scroll few times on the activity ?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Login Issue with WP Multisite SSO – 500 error #114509
     Radu
    Moderator

    Hi,

    Please update the theme to latest version 4.0.4 and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Group activity notification por mail #114508
     Radu
    Moderator

    Hi,

    I don’t understand all what you say but follow this link : https://buddypress.org/support/topic/plugin-release-group-activity-email-notifications/

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Buddypress Activity show status not working #114506
     Radu
    Moderator

    Hi,

    If you are using this shortcode kleo_bp_activity_stream show=”status” it should be ok because the show parameter from the shortcode it’s the object parameter from the bp_has_activities function

    You can read more about from the link above.

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Error activating Revolution Slider #114505
     Radu
    Moderator

    Hi,

    If you activate this plugin from wp-admin -> plugins ? the issue persists ?

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: problem with update #114504
     Radu
    Moderator

    Hi,

    You can update the theme manually by uploading the theme files ( unzip kleo.zip -> access the folder that archive has generated and where are the all theme files and directories like : assets, bbpress etc ) to wp-content/themes/kleo/

    That’s all

    Here is a link to the documentation : https://archived.seventhqueen.com/documentation/kleo#install-from-ftp

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Fatal Error #114502
     Radu
    Moderator

    Hi,

    Try to follow this link and increase PHP memory limit to recommended 128MB and see how it goes. You can contact your hosting and let them know that you need to increase PHP memory_limit directive to 128MB

    http://seventhqueen.com/blog/code-snippets/increase-php-memory-limit-in-wordpress.html

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Header Menu always extended #114501
     Radu
    Moderator

    Hi,

    Please provide credentials to check

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Login Redirect failed? #114498
     Radu
    Moderator

    Hi,

    Please go here : http://airconnects.de/wp-admin/admin.php?page=kleo_options&tab=19

    And in this area : Custom link redirect put your activity url

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Cannot change footer color #114497
     Radu
    Moderator

    Hi,

    Just i’ve tested and on my side it works

    Hold ctrl+shift+r for 1 second the see if the changes it applies.

    Let me know

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Child Theme #114496
     Radu
    Moderator

    Hi,

    The settings that you have made are in parent theme, you will have to activate parent theme back then go to import/export -> export then activate child theme and import settings.

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    For the online members just search in visual composer for “Member Statistics” then you will have to configure fields for women and men or your criteria..

    For the bbpress you can use these shortcodes https://codex.bbpress.org/features/shortcodes/

    For the groups count i’ve searched on google and i found this plugin, you will have to test it https://bp-tricks.com/featured/buddypress-shortcodes-plugin/

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: header font #114492
     Radu
    Moderator

    Hi,

    What more exactly ? font size, font color ?

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Recent Posts #114491
     Radu
    Moderator

    Hi,

    Are you referring to that carousel ? “Related posts ?”

    If yes use this css

    COPY CODE
    .kleo-carousel li .entry-summary, .kleo-carousel li hr {
        display: none;
    }

    The css will be added from wp-admin -> theme options -> general settings -> quick css

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    Please follow this article : http://seventhqueen.com/blog/code-snippets/the-definitive-wordpress-speed-guide-step-by-step-easy.html

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    Just use this :

    COPY CODE
    .offcanvas-left.offcanvas-type-default .offcanvas-sidebar.is-open, .offcanvas-left.offcanvas-type-overlay .offcanvas-sidebar.is-open {
        background: brown;
    }

    Replace brown with your desired color

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: In construction page #114480
     Radu
    Moderator

    Hi,

    The maintenance page doesn’t have an editor, in future will have it.

    Until then you can use a similar plugin : https://wordpress.org/plugins/maintenance-page/ or this https://wordpress.org/plugins/wp-maintenance-mode/

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Forum titles 404 #114478
     Radu
    Moderator

    Hi,

    Do you have solved issue ? i see titles ok no 404

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    Just i’ve visited your site and i can switch to en from fr and vice versa do you have solved the issue ?

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Scrolling #114467
     Radu
    Moderator

    Hi,

    It’s ok now,

    It was caused by download manager, i’ve deactivated the bootstrap js from the plugin settings.

    Can i mark the topic as resolved ?

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Facebook Connect not working #114466
     Radu
    Moderator

    Ok

    I will mark the topic as resolved

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Font in top menu bar #114465
     Radu
    Moderator

    Hi,

    Apply these styles

    COPY CODE
    .header-color .top-menu li > a, .header-color #top-social li a {
        color: #fff !important;
    }

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Drop down menu height too small for larger text #114464
     Radu
    Moderator

    I’ve tried to access your site but it says 500 error, please let me know when i can take a look at the dropdowns

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: error plugins. Site goes blank #114462
     Radu
    Moderator

    Hi,

    The form fields can be added or remove from wp-admin -> theme options -> buddypress -> Search form customization -> MAIN FORM -> check and uncheck your desired fields and also the text can be changed from -> Text before form

    The images size is : 2000×600 / http://seventhqueen.com/demo/sweetdatewp/wp-content/uploads/revslider/full_width_with_form/profile_users.jpg

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Semi-transparent background for the menu #114461
     Radu
    Moderator

    Hi DDArt,

    What do you need ? a more visible font color ? please provide link to view your menu

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Installation of Paid Membership PRO FAILED #114459
     Radu
    Moderator

    Hi,

    You’re welcome

    Personally i don’t know if the MAGIC MEMBERS it’s compatible i haven’t test it, you will have to test it.

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Mobile photo/video posting #114456
     Radu
    Moderator

    Hi,

    Tested and it works see attached video

    [attachment file=114457]

    What version of IOS do you have ? I have the latest version.

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Ads on Members page #114448
     Radu
    Moderator

    You will have to upload the attached file after you unzip it to wp-content/themes/sweetdate-child/members/members-loop.php

    Then you will have to paste your adsense code between

    COPY CODE
        <div style="width:728px;height:90px;background-color:red;display:inline-block;">
        
        //ad-here
        
        </div>

    You can remove width:728px;height:90px;background-color:red; the display:inline-block; is required.

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Site Width not displaying correctly. #114442
     Radu
    Moderator

    Great.

    Have a good day

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Register Button Not Redirecting to Memberships page #114441
     Radu
    Moderator

    Hi,

    I understand, in this case you will have to go to wp-admin -> memberships -> advanced -> Message for Logged-out Users: here you will have to put your link to the memberships page.

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: woocommerce template outdated #114440
     Radu
    Moderator

    Ok,

    And the notice still persists ? just close the woocommerce update notification if you have latest versions of woocommerce and the theme

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Menu #114439
     Radu
    Moderator

    Hi,

    Please follow this little video guide : https://drive.google.com/file/d/0Bxo5b6iHWRMwQnBXWHVFWE1HNHc/view

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: page render problem when not logged in #114438
     Radu
    Moderator

    Hi,

    I think the bug is related to the transparent menu, i’ve added this on buglist and this will be fixed on next update, until then please use this css

    COPY CODE
    .pmpro-body-level-required #main-container .article-content { background-color:red; text-align:center; padding:15% 0; color:#FFF; font-size:2em; }
    .pmpro-body-level-required #main-container .article-content .pmpro_content_message a { margin-top:20px !important; }

    Replace background-color:red; with your desired color and also color:#fff with your desired font color.

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Related Posts showing oldest articles #114433
     Radu
    Moderator

    Hi,

    I understand,

    I will add this to buglist untill we patch this pluase replace the code form above with this

    COPY CODE
    /* Query args */
    $args=array(
        'post__not_in' => array($post->ID),
        'showposts'=> 8,
        'orderby' => 'rand', //random posts
        'order'   => 'ASC' //most recent first
    );

    Also let me know if that works ok.

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: K Elements in widgets #114431
     Radu
    Moderator

    Hi,

    I’ve made a small video tutorial : https://drive.google.com/file/d/0Bxo5b6iHWRMwbDhKZ3pPcE1yRmM/view

    Please take a look.

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 40 posts - 14,921 through 14,960 (of 20,101 total)

Log in with your credentials

Forgot your details?