Forum Replies Created

Viewing 28 posts - 1 through 28 (of 28 total)
  • Author
  • in reply to: Full Group Description with Links #183294
     ACTasarim
    Participant

    You’re right Kieran. It’s about CSS. I’ve removed the PHP code and added only this CSS:

    COPY CODE
    .buddypress div#item-header div#item-header-content p:first-child {
        height: 140px;
    }

    It’s working fine at the moment. But I’ll try to make this rule more specific for group pages in order to prevent possible side effects.

    Thank you very much.

    in reply to: Full Group Description with Links #183292
     ACTasarim
    Participant

    With all my respect, I prefer not to give my admin credentials. I haven’t used any custom code except CSS. Does the code work on your own installation? Thanks.

    in reply to: Full Group Description with Links #183288
     ACTasarim
    Participant

    Thank you for your response. I’ve added the code to my child theme’s functions.php and changed the value (101) according to my needs. But it had no effect. (I cleared my cache.)

    in reply to: Translation problem – Live Messages #180384
     ACTasarim
    Participant
    Not marked as solution
    in reply to: Add full name to member pages problem #180258
     ACTasarim
    Participant
    Not marked as solution
    in reply to: Add full name to member pages problem #180256
     ACTasarim
    Participant
    Not marked as solution
    in reply to: Add full name to member pages problem #180242
     ACTasarim
    Participant
    Not marked as solution
     ACTasarim
    Participant
    Not marked as solution
     ACTasarim
    Participant
    Not marked as solution
    in reply to: Translating "Groups Directory" text #76102
     ACTasarim
    Participant

    With all my respect, I’d prefer not to give it. Can you see and edit the “Groups Directory” string in your own installation?

    in reply to: Translating "Groups Directory" text #75653
     ACTasarim
    Participant

    Hi Laura. I’ve tried it. All the strings are up-to-date.

    in reply to: Compatibility with rtMedia #60730
     ACTasarim
    Participant

    Thanks for your help Andrei. It works well. Cheers

    in reply to: Compatibility with rtMedia #60726
     ACTasarim
    Participant
    This reply has been set as private.
    in reply to: Compatibility with rtMedia #60724
     ACTasarim
    Participant
    This reply has been set as private.
    in reply to: translation #60718
     ACTasarim
    Participant

    Hi Laura. For you the language files for sweetdate should be in languages folder and in sweetdate/languages. For me it should be and work in wp-content/languages/themes. Every time updating a theme or plugin I shouldn’t upload files manually.

    I think you guys should immediately solve this problem as recommended by the author of the Loco Translate in order to recommend this plugin for your customers.

    For further reference you can check this post: https://archived.seventhqueen.com/forums/topic/mo-file-in-global-languages-directory Thanks

    in reply to: Rt-media upgrade trouble #60693
     ACTasarim
    Participant

    me too… thanks for trying but that didn’t solve the problem 🙁

    in reply to: mo file in Global languages directory #60501
     ACTasarim
    Participant

    Here is the reply of the author of Loco Translate:

    Loco needs to know (or be able to guess) that the text domain is kleo_framework. It sound like originally it got it wrong. (common problem)

    The best way to do this is declare it in style.css using the Text Domain header.

    Additionally it’s good to have the POT file named correctly. kleo_framework.pot is the best option. If you don’t have a POT file, just avoid using incorrect namings for template files, like default.po etc..

    Also, make sure you don’t have any of the old files with the wrong sweetdate naming conventions kicking around or the plugin will get confused.

    If this isn’t your theme, it’s not a good idea to edit it. Pass this info on to the author if this is the case.

    in reply to: Compatibility with rtMedia #60366
     ACTasarim
    Participant

    Activity problem (rtbug1.png) only happens when clicking on own Profile link. Not happening when you’re on other people’s profiles…

    in reply to: Rt-media upgrade trouble #60299
     ACTasarim
    Participant

    Same problem here. After rtMedia update my activity looks like this.

    When I deactivate rtMedia, it works normal.

    Attachments:
    You must be logged in to view attached files.
    in reply to: mo file in Global languages directory #59777
     ACTasarim
    Participant

    Hi Abe. Thanks for the answer. When I change the name of my file in wp-content/languages/themes from sweetdate-tr_TR.mo to kleo_framework-tr_TR.mo it works fine. You’re right. But now I see nothing to edit in Loco Translate UI.

    Loco Translate sees the text domain as sweetdate but the real text domain is kleo_framework. As I understand sweetdate is not compatible with Loco Translate. I’m sure that you guys know better than me but at least you should immediately add some code to your style.css or somewhere else to show your textdomain to Loco Translate because Loco is using folder name for textdomain and you’re recommending this plugin to your customers.

    Btw I’m waiting for an answer from timwhitlock (creator of Loco Translate). If I find a solution, I will post it here.

    Best regards

    in reply to: mo file in Global languages directory #59019
     ACTasarim
    Participant

    Is there anybody out there?

    in reply to: translation #58643
     ACTasarim
    Participant

    Hi. I’m using Loco Translate and keeping my po & mo files in Global languages directory (wp-content/languages/themes) as suggested by Loco. I don’t know why but my localized sweetdate-tr_TR.mo file is ignored by the theme. When I copy the same file to wp-content/themes/sweetdate/languages folder it works fine. Why sweetdate is ignoring WP_LANG_DIR?
    Thanks

    in reply to: Changing domain #38018
     ACTasarim
    Participant

    My other site is not online. I’ve deleted the entire site. At the moment I’m using Sweetdate only on my new site. Do I have to buy a new licence?

    in reply to: Remove Rev Slider for logged in users #10116
     ACTasarim
    Participant

    It worked Andrew 🙂 I had to change all the ’ with ‘ . So for future references the working version of Andrew’s code is:


    add_action('after_setup_theme','remove_revslider',100);
    function remove_revslider()
    {
    if(is_user_logged_in()) {
    remove_action('kleo_after_header', 'kleo_page_revslider'); // for pages
    remove_action('kleo_after_header', 'kleo_home_revslider'); // for home page
    }
    }

    Thank you

    in reply to: Remove \"Match\" #10063
     ACTasarim
    Participant

    Maybe it’s a stupid question but I couldn’t get it. The link above explains how to replace hearts in site. What if I want to completely remove the hearts?

    in reply to: Profile Page – Name Surname #8698
     ACTasarim
    Participant

    Btw I saw a php code in members-loop.php —-> <?php do_action(‘bp_members_meta’);?>

    In order to show this Name Surname style everywhere in my site and make this perfect, can I add
    <h2><?php bp_member_profile_data( 'field=Name' )?>&nbsp<?php bp_member_profile_data( 'field=Surname' ); ?></h2> style

    to members_meta variable?

    in reply to: Profile Page – Name Surname #8696
     ACTasarim
    Participant

    That worked great thank you Adam 🙂

    in reply to: Redirect After Login #8575
     ACTasarim
    Participant

    @ adam ‘s code didn’t work for me either…

Viewing 28 posts - 1 through 28 (of 28 total)

Log in with your credentials

Forgot your details?