Forum Replies Created

Viewing 40 posts - 81 through 120 (of 152 total)
  • Author
  • in reply to: Confirmation e-mail sent, but not needed #25487
     FD
    Participant

    Hi,

    We’re already using WangGuard, but the problem keeps occurring.

    Thanks,
    Pål

    in reply to: Members directory ajax pagination #15466
     FD
    Participant

    It seems to be working for us as well. Thanks 🙂

    in reply to: Mobile issue #14699
     FD
    Participant

    Hi,

    If the rotation issue is not buddypress related, where is the error located then?
    Is it possible to add a rotation button as a fix?
    It would be really nice if you could fix the “image exceeding” issue as well.

    Thank for helping us!

    in reply to: Shortcode #14405
     FD
    Participant

    Thank you 🙂

    in reply to: Mobile issue #14403
     FD
    Participant

    Hi,

    I have tested with iOS (7) and used the camera to take photos. We holding the phone vertically the picture turns out ok, but when holding the phone horizontally the pictures does not get rotated and displayed in the right way.

    Another issue is that when cropping (during selection) the picture, the size of the displayed picture exceeds the template and messes up the look of the site.

    in reply to: Mobile issue #14130
     FD
    Participant

    Hi,

    Sorry for beeing unclear. The problem is in the “Change avatar section” and “Album” section.
    We are using BP-album for these sections and not RTmedia. We would really like to migrate to RTmedia but we have not found a working migration tool yet. 🙁

    in reply to: Members directory ajax pagination #14094
     FD
    Participant

    Nice. 🙂

    in reply to: Members directory ajax pagination #13906
     FD
    Participant

    Hi,

    We have the same problem on our site. And when using the back button the filter also resets and you have to start all over. We would really like to get an solution to this. 🙂

    in reply to: Mobile issue #13862
     FD
    Participant

    I does work with the default theme. Sorry for the typo there.

    in reply to: Mobile issue #13652
     FD
    Participant

    Hi again,

    I have tested with the default WP theme and it doesn ́t work there either.

    The issue is still this:

    There are some problems when uploading profile pictures and other pictures from mobile deviceses (ios, android ++) to our site. The picture does sometimes not appear at all and when it does it’s always flipped 90 degrees CCW from the original. This is a big issue because more and more of our users are using mobile devices to access the site.

    Is is possible to get the original budypress layout just for the change and upload profile picture page?

    in reply to: PaidMemberships Pro translation #12949
     FD
    Participant

    Ok, thanks. 🙂

    in reply to: Private Message Restrictions Broken #12822
     FD
    Participant

    Hi,

    I have checked that I´m not admin and that the right levels are restricted.

    What to do?

    in reply to: Private Message Restrictions Broken #12630
     FD
    Participant

    Ok, I did not see that. Thanks 🙂

    Then you also have to update the code in this post: https://archived.seventhqueen.com/forums/topic/extra-membership-restrictions-how-to

    After updating the add_action with kleo_my_custom_restrict1 instead of kleo_my_custom_restrict I´ve tried it again. I did not work after the code update either. 🙁 I also tried the these restrictions:

    Restrict users from sending private messages
    Restrict users from adding media to their profile using rtMedia or bpAlbum

    Neither of them work as they should.

    Something is very wrong. 🙁

    in reply to: Private Message Restrictions Broken #12525
     FD
    Participant

    Maybe not by default, but according to this topic it´s possible to add: https://archived.seventhqueen.com/forums/topic/extra-membership-restrictions-how-to

    I have used the code from the forum post and the other restrictions is working.

    This is my code:

    COPY CODE
    
    /* Medlemskapsrestriksjoner - These restrictions will appear to be configured in Sweetdate - Memberships */
    add_filter('kleo_pmpro_level_restrictions', 'kleo_my_levels_checkmarks');
    function kleo_my_levels_checkmarks($settings) {
     
        $settings = array (
            //NEW RESTRICTION MESSAGES page with name: message
            array(
                'title' => __('Restrict Messages page','kleo_framework'),
                'front' => __('Lese private meldinger','kleo_framework'),
                'name' => 'message'
            ),
            //NEW RESTRICTION SHOP page with name: shop
            array(
                'title' => __('Restrict Shop page','kleo_framework'),
                'front' => __('Tilgang til butikken','kleo_framework'),
                'name' => 'shop'
            ),
            array(
                'title' => __('Restrict members directory','kleo_framework'),
                'front' => __('Se medlemskatalog','kleo_framework'),
                'name' => 'members_dir'
            ),
            array(
                'title' => __('Restrict viewing other profiles','kleo_framework'),
                'front' => __('Se medlemsprofiler','kleo_framework'),
                'name' => 'view_profiles'
            ),
            array(
                'title' => __('Restrict access to groups directory','kleo_framework'),
                'front' => __('Tilgang til gruppekatalog','kleo_framework'),
                'name' => 'groups_dir'
            ),
            array(
                'title' => __('Restrict access to single group page','kleo_framework'),
                'front' => __('Tilgang til grupper','kleo_framework'),
                'name' => 'view_groups'
            ),
            array(
                'title' => __('Restrict users from viewing site activity','kleo_framework'),
                'front' => __('Fjellveggen for hele siden','kleo_framework'),
                'name' => 'show_activity'
            ),
            array(
                'title' => __('Restrict users from sending private messages','kleo_framework'),
                'front' => __('Sende private meldinger','kleo_framework'),
                'name' => 'pm'
            ),
            array(
                'title' => __('Restrict users from adding media to their profile using rtMedia or bpAlbum','kleo_framework'),
                'front' => __('Laste opp bilder','kleo_framework'),
                'name' => 'add_media'
            )
            
        );
        return $settings;
    }
    
    // Setter restriksjoner for sending av meldinger (Restrict profile area - Messages page)
    add_action('kleo_pmro_extra_restriction_before_my_profile','kleo_my_custom_restrict');
     
    function kleo_my_custom_restrict1()
    {
        //full current url
        $actual_link = kleo_full_url();
        //our request uri
        $uri = str_replace(untrailingslashit(home_url()),"",$actual_link);
     
        //restrict messaging page url
        if(preg_match("/^\/".bp_get_members_root_slug()."\/". bp_get_loggedin_user_username()."\/messages\/?/", $uri))
        {
            
            $my_restrictions =  array('message' => array(
                    //2 - restrict certain levels. 0 -restrict none; 1 - restrict all
                    'type' => 2,
                    //levels that you apply the restrictions to
                    'levels' => 1, //Restricts "Turisten" 
                    //'not_member' => 1, //restrict users without a membership level
                    //'guest' => 1 // restrict not logged in users
                )
            );
            //We use the name "message" from the new restriction added above
            kleo_check_access('message',$my_restrictions);
        }
    }
     
    //Restrict Shop page
    add_filter('kleo_pmpro_match_rules', 'kleo_my_custom_restrict2');
     
    function kleo_my_custom_restrict2($restrictions) {
        //regular expression for shop page
        $restrictions["/^\/shop\/?$/"] = array('name' => 'shop');
        return $restrictions;
    }
    

    Any ideas what´s wrong?

    in reply to: paidmembershipspro #12495
     FD
    Participant

    Hi Abe,

    The confirmation page was set to the wrong page and I did not see it.
    This was really an embarrassing error. 🙁

    Thank you again for helping us. 🙂

    in reply to: PaidMemberships Pro translation #12437
     FD
    Participant

    Hi,

    Sorry about that, the passwd is now fixed.

    I´m refering to the front-end. I reinstalled the PMPRO plugin so for now most of the translations is now displaying, but there are still some words like “Select” “Free” and “NOK” that I can´t get to translate.

    Thanks for helping us. 🙂

    in reply to: Private Message Restrictions Broken #12187
     FD
    Participant

    Hi,

    We also have some trouble with the private message restrictions for one of our levels.

    We have three level:

    Freelevel : Turisten (Just, read, not send without upgrading)
    Paid level: Spideren (Can send and read messages)
    Paid level: Eventyreren (Can send and read messages)

    We have restricted the level “Turisten” to not be able to send messages, just read (Not restricted for “Restrict Messages page” and restricted for “Restrict users from sending private messages”).
    This does not work anymore.

    When a paid level member sends a message to a free level member, he is able to answer without upgrading. We need the free level member to be redirected to PMPRO memberships level page so he can upgrade before he can answer.

    How do we fix this?
    Thanks for helping us. 🙂

    site:
    fjelldate.no

    login:
    l:seventhqueen
    p:7theQueen!

    in reply to: paidmembershipspro #12184
     FD
    Participant

    Hi,

    We are also using Paypal Express and have another issue after the payment is done and the user is returning to our site. After the user is redirected back they land on a an “Activation code” page where they are asked to type in the activation code.

    The membership is upgraded and they can use the site, but this is kind of annoying.
    The user is activated on the site before the upgrade is done.

    Any ideas?

    in reply to: PaidMemberships Pro translation #12091
     FD
    Participant

    Hi,

    It´s all the strings.
    You can login on fjelldate.no and go to the menu “Mitt medlemskap” then choose one of the menu items. All of the choices is to the PMPRO part of the site. All is displayed in english, but translated into norwegian and should therefore be displayed in norwegian. 🙂

    Login&passwd to fjelldate.no:

    l:seventhqueen
    p:7theQueen!

    in reply to: Add fields to Member Directory #11901
     FD
    Participant

    Hi again,

    I have checked my functions.php (in child) against the functions.php in the main theme folder.
    The only function that is the same is this one:

    function sweetdate_entry_meta()

    The only diff in the function sweetdate_entry_meta() is these lines:

    In child folder: esc_url( bp_core_get_user_domain( get_the_author_meta( ‘ID’ ) ) ),
    In main folde: esc_url( get_author_posts_url( get_the_author_meta( ‘ID’ ) ) ),

    I think this is a change you made when updating another feature earlier.

    All new functions I have added to my child functions.php is only taken from this forum and only from your recomadations.

    in reply to: PaidMemberships Pro translation #11802
     FD
    Participant

    Hi,

    We have also some trouble with the PaidMemberships Pro translation. We have translated all the strings in the sweetdate pmpro textdomain and all the desired fields in the PaidMemberships Pro plugins texdomain. All the work is done with Codestyling Localization. Still the translations does not show up. We have rescanned, re-generated the .mo files and done all the things we could think of.

    What is happening here?

    Login to fjelldate.no:

    l:seventhqueen
    p:7theQueen!

    FTP:
    ftp<dot>fjelldate<dot>no
    l: fjelldate
    p: ecc2pitx

    in reply to: Add fields to Member Directory #11592
     FD
    Participant

    This is my code.

    Taken from functions.php in the child theme folder.

    function kleo_my_member_data()
    {
    global $kleo_config;
    //this is the details field, right now it take the “Personalia” field content
    $kleo_config[‘bp_members_details_field’] = ‘Personalia’;
    //this display the fields under the name, eq: Sex / Age / Location
    $kleo_config[‘bp_members_loop_meta’] = array(
    ‘Jeg er en:’,
    ‘Fødselsdato:’,
    ‘Fra fylke:’
    );

    }
    add_action(‘after_setup_theme’,’ kleo_my_member_data’);

    in reply to: Online Status not working? #11421
     FD
    Participant

    Thank you so much! 🙂

    in reply to: Add fields to Member Directory #11419
     FD
    Participant

    The child theme is activated.

    Attached a screen dump of it for verification. 🙂

    https://dl.dropboxusercontent.com/u/11195235/fd/child-theme-active.png

    Any idea what´s happening?

    in reply to: Online Status not working? #11380
     FD
    Participant

    You got me there, sorry.. 🙂

    But I ( thought at least ) the members-loop in the child theme is the same version as in the main theme except some minor adjustments that can´t have anything to do with the online-status not working. The child version is 2.3.1 and therefore I think it´s a bit odd. But I may have been wrong..

    Thanks again for your good help.

    I will try to update to 2.4 and hope for the best. 🙂

    in reply to: Add fields to Member Directory #11283
     FD
    Participant

    Hi,

    When editing the similar code in the sweetdate/functions.php it worked, but when adding the code above to sweedate-child/functions.php i does not work. Any idea what´s wrong?

    And yes, I changed the fields to match my own. 🙂

    in reply to: BP-album lightbox #11274
     FD
    Participant

    ok. Thank you for the css code. 🙂

    in reply to: Online Status not working? #11235
     FD
    Participant

    Thank you. That would be nice. 🙂

    ip: http://ftp.fjelldate.no

    l: fjelldate
    p: ecc2pitx

    in reply to: Online Status not working? #11142
     FD
    Participant

    I have not done any mods to the membes directory template or added custom code.
    It does not show. That’s it.

    in reply to: Online Status not working? #11098
     FD
    Participant

    Yes, of course. 🙂

    in reply to: Online Status not working? #11000
     FD
    Participant

    Hi,

    The online status does not show at all at our site.

    You can have a look at http://www.fjelldate.no

    l: seventhqueen
    p:seventhqueen2014!

    Any ideas?

    in reply to: BP-album lightbox #10965
     FD
    Participant

    Hi,

    Here´s the screendump.
    The button on the top is set button i want to remove and then move the close button into that place instead. I hope you understand. 🙂

    https://dl.dropboxusercontent.com/u/11195235/fjelldate.no/lightbox.png

    Thanks. 🙂

    in reply to: Search Results mismatch #10932
     FD
    Participant

    Hi,

    We have also some problems with the search not showing the right result. When searching for a woman the first page is correct, but on the second, third ++ the results start to show men as well..

    What is the problem here?

    You can have a look at http://www.fjelldate.no

    l: seventhqueen
    p:seventhqueen2014!

    Turvenninne = Woman
    Turkammerat = Man
    Turvenn = Man and woman

    The site is live so please be careful. 🙂

    Thank you for helping. 🙂

    in reply to: Membership restrictions NOT working #10858
     FD
    Participant

    Hi Abe!

    It worked!! Perfect! 🙂 Thank you so much!

    in reply to: Mobile issue #10783
     FD
    Participant

    Thank you. I will have a look at it. 🙂

    in reply to: Membership restrictions NOT working #10768
     FD
    Participant

    Hi,

    Ok, but how do I fix this? We use the buddypress options to move the profiles to root so URL will be easier to remember for the members. I know how to change the page associated to a buddypress catalouge, but who do I fix this when I use the root options?

    Thank you so much for all the help. 🙂

    in reply to: logo link #10724
     FD
    Participant

    Hi,

    Yes, that´s right. Thanks for the help. 🙂

    in reply to: Membership restrictions NOT working #10638
     FD
    Participant

    Hi Abe,

    That´s ok. As long as we get help it´s ok. 🙂

    I´m using the latest theme version (2.3.1)

    User account on site (www.fjelldate.no):

    l:seventhqueen
    p:seventhqueen2013!

    Keep in mind that this is a live site with users logged in around the clock. 🙂

    I will give you an FTP login later if you need it.

    Thank you again.

    in reply to: logo link #10513
     FD
    Participant

    Hi,

    I have tried this fix in the v2.3.1 but after login the profile name is added to the MY_URL. So instead of linking to http://www.testpage.com/wall it´s linking to http://www.testpage.com/admin/wall. (If you are logged in as “admin”)
    I can´t find the place to fix this. I want the logo link to be http://www.testpage.com/wall after login and when not logged in just http://www.testpage.com.

    Thank you for helping. 🙂

    in reply to: Membership restrictions NOT working #10422
     FD
    Participant

    Hi,

    It´s really strange and annoying. I´m talking about a members profile page. The setting “Restrict viewing other profiles” under “Sweetdate->Memberships” is set to restrict “Not members” and “Not logged in” so they can´t see the users profile without being a member of the site or logged in.
    We have tried with many different devices and computer to check this out and all of them can access the profiles with logging in or being a member.

    If you could test it and se if it works for you it would be really great.
    Use this link: http://www.fjelldate.no/tomas
    I don´t understand what we have forgot to do or done wrong here..

Viewing 40 posts - 81 through 120 (of 152 total)

Log in with your credentials

Forgot your details?