Forum Replies Created

Viewing 40 posts - 11,401 through 11,440 (of 20,101 total)
  • Author
  •  Radu
    Moderator
    Not marked as solution
    in reply to: hide or change a certain paragraph #132717
     Radu
    Moderator

    You can change any string using translation method.

    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

    R.

    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: CSS for Accordion Text #132716
     Radu
    Moderator

    Hi,

    Try those selectors

    COPY CODE
    
    .panel-heading {
        background-color: yellow !important;
        font-family:monospace;
    }
    .panel-heading a.accordion-toggle {
        color: red !important;
        font-family: monospace;
    }
    
    .panel .panel-collapse { background-color:green; color:#fff;font-family:monospace;}
    

    Cheers
    R.

    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: logout issue #132715
     Radu
    Moderator

    hi,

    Using this method : https://wordpress.org/support/topic/wp-logout-page-redirect-to-homepage

    You can have a logout redirect…

    just paste this code in wp-content/themes/buddyapp-child/functions.php

    COPY CODE
    
    add_action('wp_logout','go_home');
    function go_home(){
      wp_redirect( home_url() );
      exit();
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Profile side bar #132714
     Radu
    Moderator

    Hi,

    Using the next function you can manipulate the titles of the components that appear in the bp user menu.

    COPY CODE
    
    
    function rename_bp_tabs() {
        global $bp;
        $bp->bp_nav['notifications']['name'] = 'RE-Notifications';
        $bp->bp_nav['messages']['name'] = 'RE-Messages';
        $bp->bp_nav['groups']['name'] = 'RE-GRoups';
    }
    add_action( 'bp_init', 'rename_bp_tabs');
    
    

    If you want to rename and another component just add after

    $bp->bp_nav[‘groups’][‘name’] = ‘RE-GRoups’;

    From example :
    $bp->bp_nav[‘profile’][‘name’] = ‘My profile’;

    the function will be added to wp-content/themes/kleo-child/functions.php

    Note: Child theme needs to be installed and activated.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Nested Tabs #132710
     Radu
    Moderator
    Not marked as solution
    in reply to: Not Mobile Friendly #132705
     Radu
    Moderator

    Great

    Have a nice week

    Cheers
    R.

    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: Double Menu #132701
     Radu
    Moderator

    Hi,

    I cannot see two menus in the screenshot and also when i click to link it ask me to login, so provide the login credentials to check and point out in that screenshot that second menu.

    Cheers
    R.

    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: Double Menu #132700
     Radu
    Moderator

    Hi,

    I cannot see two menus in the screenshot and also when i click to link it ask me to login, so provide the login credentials to check and point out in that screenshot that second menu.

    Cheers
    R.

    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: Line Chart inside Kleo Accordeon #132697
     Radu
    Moderator
    Not marked as solution
    in reply to: WPML String Translation for KLEO contact us form #132678
     Radu
    Moderator

    Provide also the wp admin login details.

    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 Color Variation #132676
     Radu
    Moderator
    Not marked as solution
    in reply to: Not Mobile Friendly #132673
     Radu
    Moderator

    Maybe you are using a plugin like buddy boss or jetpack that loads that template thru plugins, or check in those plugin options for theme module try to de-activate it.

    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 solution
    in reply to: cant change font type after update #132672
     Radu
    Moderator

    Link : https://wordpress.org/support/topic/select2-script-error-on-new-version-in-admin?replies=1#post-8761314

    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: cant change font type after update #132671
     Radu
    Moderator

    Hi,

    This is caused by the new version of social articles, so please keep the plugin off, or set plugin off choose your font and activate plugin and check again, now we are writing to social articles developer and in future this will be fixed

    Cheers
    R.

    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: media group #132668
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    div#item-header-content span.label.radius.pmpro_label { display:none !important; }
    
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: media group #132667
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    div#item-header-content span.label.radius.pmpro_label { display:none !important; }
    
    

    Cheers
    R.

    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: Slider above header #132666
     Radu
    Moderator
    Not marked as solution
    in reply to: Tab content overlaps with sidebar #132665
     Radu
    Moderator

    Hi,

    Just add this CSS to quick CSS area

    COPY CODE
    
    
    @media(max-width:700px) {
    .accordion-content { float:none !important; }
    }
    
    

    Cheers
    R.

    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: installed new update website giving error messag #132664
     Radu
    Moderator
    Not marked as solution
    in reply to: Private Message Button Color #132663
     Radu
    Moderator

    Hi,

    COPY CODE
    
    div.block-member {
        display: inline-block !important;
        width: auto;
    }
    
    div.block-member a {
        padding: 10px 31px;
        background: red !important;
    }
    

    Cheers
    R.

    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: Anchor link scrolling too far #132659
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    Please, please write your questions in a single ticket please, I cannot process too much information at once, I will miss things, so please put your all current questions on a single ticket and then wait for my reply or for another admin reply please !

    I see the questions that are you asking most related to customizations and they are not theme problems for what you need I recommend you to start a collaboration with a developer.

    Cheers
    R.

    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: Kleo Posts Carousel #132657
     Radu
    Moderator

    Ok

    Cheers
    R.

    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: Divider with icon – Mobile #132654
     Radu
    Moderator

    Hi,

    This is caused by the theme pub that are loaded only when you are using mobile device, so try to de-activate theme and empty all caches and try again

    Cheers
    R.

    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: Ajax Search #132653
     Radu
    Moderator

    We will check again also the spam folder… and we will respond you quickly.

    Cheers
    R.

    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 breadcrumbs to a custom link site wide. #132652
     Radu
    Moderator

    Hi,

    That user was asking ho can use a custom breadcrumb title, not to change the breadcrumb structure.

    For the breadcrumb structure make sure you have settings like this from wp-admin -> settings -> permalinks

    Important to have in the category input .

    Cheers
    R.

    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: WPML String Translation for KLEO contact us form #132651
     Radu
    Moderator

    Hi,

    Please provide FTP and Wp admin access to can investigate this.

    Cheers
    R.

    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 Right Hand Cutoff #132649
     Radu
    Moderator

    Hi,

    If you want to use that style of header you should add a secondary menu too!

    The primary menu it’s in left and the secondary it’s on the right side.

    So, leave in the primary menu elements that you want to have it in left side and go to Wp-admin -> appearance -> menus -> create a new menu and assign it to the secondary menu, this represents the right side of the menu.

    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 solution
    in reply to: Not Mobile Friendly #132648
     Radu
    Moderator

    Hi,

    If i visit your website from a mobile device it shows another theme, so please de-activate that respective plugin responsible for that, pub I think pub it’s name of the theme.

    Cheers
    R.

    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: Logo issue #132646
     Radu
    Moderator
    Not marked as solution
    in reply to: can not login with facrbook #132642
     Radu
    Moderator
    Not marked as solution
    in reply to: cant change font type after update #132641
     Radu
    Moderator

    Yes it’s our version.. ofc, with 4.1.2 version i have the font field in theme options.

    If you are sure that it’s caused by the theme and by not thirtparty plugin or child modification provide the wp admin to check

    Cheers
    R.

    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: Demo data #132640
     Radu
    Moderator

    I cannot view the website it says : Error establishing a database connection, but anyway most probably you should add manually images, check in documentation.

    Cheers
    R.

    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: Customize Profile Icons & Media Section #132539
     Radu
    Moderator
    Not marked as solution
    in reply to: prettyphoto and image carousel #132537
     Radu
    Moderator

    My country it’s Romania,

    Do you have any update available check in wp-admin -> appearance -> install plugins

    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 solution
    in reply to: Not Mobile Friendly #132536
     Radu
    Moderator

    And if you check this url : https://submrs.com/ , what it says ?

    Cheers
    R.

    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: Divider with icon – Mobile #132535
     Radu
    Moderator

    Do you have solved because i cannot see that, if you still see that, empty your phone cache

    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 solution
    in reply to: installed new update website giving error messag #132534
     Radu
    Moderator
    Not marked as solution
    in reply to: can not login with facrbook #132526
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 11,401 through 11,440 (of 20,101 total)

Log in with your credentials

Forgot your details?