Forum Replies Created

Viewing 40 posts - 1 through 40 (of 68 total)
  • Author
  • in reply to: Delete message #174485
     egabillat
    Participant

    Hi Radu.
    not resolved for me…
    See my function.php from my child theme.
    Thanks, Eric.

    <?php
    /**
    * @package WordPress
    * @subpackage Kleo
    * @author SeventhQueen <themesupport@seventhqueen.com>
    * @since Kleo 1.0
    */
    /**
    * Kleo Child Theme Functions
    * Add custom code below
    */

    add_action( “init”, “my_init”, 1000 );
    function my_init() {
    remove_action(‘adverts_tpl_single_bottom’, ‘adverts_single_contact_information’);
    }

    add_filter(‘rtmedia_media_tab_position’, ‘reorder_rtmedia_media_tab_position’, 10, 1);
    function reorder_rtmedia_media_tab_position( $pos ){
    return 1;
    }

    //* Redirect WordPress to Homepage Upon Logout
    add_action(‘wp_logout’,create_function(”,’wp_redirect(home_url());exit();’));

    add_filter(‘geodir_login_url’,’change_geodir_login_url’,10,3);
    function change_geodir_login_url($login_url,$args,$gd_page_id){
    //change the url to whatever you want.
    $login_url = ‘http://localhost:8888/register/&#8217;;
    return $login_url;
    }

    // Remove admin from the member directory
    function bpdev_exclude_users($qs=false,$object=false){

    $excluded_user=’347′; // Id’s to remove, separated by comma ohe 347

    if($object != ‘members’ && $object != ‘friends’)// hide admin to members & friends
    return $qs;

    $args=wp_parse_args($qs);

    if(!empty($args[‘user_id’]))
    return $qs;

    if(!empty($args[‘exclude’]))
    $args[‘exclude’] = $args[‘exclude’].’,’.$excluded_user;
    else
    $args[‘exclude’] = $excluded_user;

    $qs = build_query($args);

    return $qs;

    }
    add_action(‘bp_ajax_querystring’,’bpdev_exclude_users’,20,2);

    // once admin is removed, we must recount the members !
    function bpfr_hide_get_total_filter($count){
    return $count-1;
    }
    add_filter(‘bp_get_total_member_count’,’bpfr_hide_get_total_filter’);

    // hide admin’s activities from all activity feeds
    function bpfr_hide_admin_activity( $a, $activities ) {

    // … but allow admin to see his activities!
    if ( is_site_admin() )
    return $activities;

    foreach ( $activities->activities as $key => $activity ) {
    // ID’s to exclude, separated by commas. ID 1 is always the superadmin ohe 347
    if ( $activity->user_id == 347 ) {

    unset( $activities->activities[$key] );

    $activities->activity_count = $activities->activity_count-1;
    $activities->total_activity_count = $activities->total_activity_count-1;
    $activities->pag_num = $activities->pag_num -1;
    }
    }
    // Renumber the array keys to account for missing items
    $activities_new = array_values( $activities->activities );
    $activities->activities = $activities_new;

    return $activities;

    }
    add_action( ‘bp_has_activities’, ‘bpfr_hide_admin_activity’, 10, 2 );

    function gde_24hour_times( $times ) {
    foreach($times as $key=>$val){
    $times[$key]=$key;
    }
    return $times;
    }
    add_filter( ‘geodir_event_schedule_times’, ‘gde_24hour_times’ );

    // Add this code to theme’s functions.php
    // Remove target blank from edit link.
    // Check if function doest not exists.
    if ( ! function_exists( ‘rtmedia_wp_footer_add_js_callback’ ) ) {
    function rtmedia_wp_footer_add_js_callback() {
    ?>
    <script type=”text/javascript”>
    jQuery(document).ready(function($) {
    function remove_blank_target() {
    jQuery( ‘.rtmedia-list .rtmedia-list-item’ ).each( function(){
    var target = jQuery( this ).find( ‘.rtmedia-gallery-item-actions a:first’ ).attr( ‘target’ );
    // Checked for the target attribute if it exists or not and is also set to blank.
    if ( target != ‘undefined’ ) {
    // Replace the blank target attribute to self target attribute.
    jQuery( this ).find( ‘.rtmedia-gallery-item-actions a:first’ ).attr( ‘target’, ‘_self’ );
    }
    });
    }
    // Function for removing target blank
    remove_blank_target();
    // Remove target blank when new elements are added
    jQuery(‘.rtmedia-list’).bind(“DOMSubtreeModified”,function(){
    remove_blank_target();
    });
    });
    </script>
    <?php
    }
    }
    add_action( ‘wp_footer’, ‘rtmedia_wp_footer_add_js_callback’ );

    in reply to: rtMedia likes #173914
     egabillat
    Participant

    It’s OK !!!!
    Thank you,
    Eric

    in reply to: Delete message #173912
     egabillat
    Participant

    Hello ! Not resolved…. ?

    in reply to: rtMedia likes #173908
     egabillat
    Participant

    Oups !!!!

    Attachments:
    You must be logged in to view attached files.
    in reply to: Delete message #163316
     egabillat
    Participant

    Thank you Radu.

    in reply to: Delete message #163144
     egabillat
    Participant

    Another video.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Delete message #163137
     egabillat
    Participant

    Hi.
    on your demo the problem exist !
    See the 3 files attached !

    [attachment file=163138]

    [attachment file=163139]

    [attachment file=163140]

    Attachments:
    You must be logged in to view attached files.
    in reply to: WooCommerce Bug? #163034
     egabillat
    Participant

    Hi Radu.
    What do you think about this ?
    https://github.com/woocommerce/woocommerce/issues/15020
    Waiting WooCommerce 3.1 ???
    Thank you

    in reply to: WooCommerce Bug? #162829
     egabillat
    Participant

    Hi.
    no solution for this issue ?
    Thank you.

    in reply to: WooCommerce Bug? #161082
     egabillat
    Participant

    Thank you Radu. I will wait for your update patiently ! ?

    in reply to: WooCommerce Bug? #160971
     egabillat
    Participant
    This reply has been set as private.
    in reply to: rtMedia : edit media #160891
     egabillat
    Participant

    Thank you.

    in reply to: WooCommerce Bug? #160805
     egabillat
    Participant

    Hi.
    For me it’s too complicated to return to the default theme… errors !
    And you Radu, have you tested ?
    Thanks

    in reply to: rtMedia : edit media #160668
     egabillat
    Participant

    … Just a clarification: it is only when you click “EDITER” on the thumbnails of the photos (see image attached). When I open the image and choose to edit it, no problem, I edit the image in the same window (not a new window).
    Thank you.

    Attachments:
    You must be logged in to view attached files.
    in reply to: WooCommerce Bug? #160532
     egabillat
    Participant

    Hi !
    same problem without the child theme.
    I manually updated Kleo yesterday, because the new version don’t appear in themes updates…
    I create orders with and without the child theme, and immediately the user name is changed in first name + name used in the order fields. And this immediately when I proceed to checkout.
    I can see the change in real time in the “My Account” menu !

    in reply to: WooCommerce Bug? #160318
     egabillat
    Participant

    Hello,
    I have the same Bug with testingin local with MAMP.
    Kleo and plugins all updated.
    Cheers

    in reply to: Woocommerce translation #158742
     egabillat
    Participant

    Good morning Laura.
    I can not give you access to my account because I test locally on MAMP.
    On the other hand, I opened the WooCommece translation in PoEdit and the strings are translated.
    WooCommerce has put a new version online asking to update KLEO …
    Have a good day.

    in reply to: Woocommerce translation #158547
     egabillat
    Participant

    Same problem with French. Woocommerce si Fully translated, no need ton use Locotranslate !

    in reply to: Buddypress CSS Bold Change #157294
     egabillat
    Participant

    Hi. Same issue, back to previous version.

    in reply to: Redirect non loged in #135700
     egabillat
    Participant

    Hello Laura.
    Finally I found “Simple Members Only” plugin which works fine
    Thanks

    in reply to: Seventhqueen Forums #117840
     egabillat
    Participant

    Hi Abe.
    I have understand your answer but why it is not possible to start a new topic ?

    in reply to: Seventhqueen Forums #117712
     egabillat
    Participant

    Thank you Abe.
    I have an answer !
    Have a nice day.

    in reply to: Seventhqueen Forums #117558
     egabillat
    Participant

    It seems that the problem appears very often when the subject is “IN PROGRESS” or “NOT RESOLVED”…

    in reply to: Seventhqueen Forums #117556
     egabillat
    Participant

    Hello and thank you rikbutterflyskull!
    Perhaps this is the reason …

    But if all the subjects become private, so there is no need to create a forum.
    The purpose of the forums is to find an answer to a problem and to share with others!
    I think the problem is elsewhere because I can not reach a majority of subjects in forums …

    @ Radu: I think the problem is different and that your response is not good, sorry to bother you.
    Have a good day

    in reply to: Seventhqueen Forums #117334
     egabillat
    Participant

    Oups ! I wanted to write :
    For 2 years of reading lots of topics of your forums, I never had this problem, no indication to see if topics are private only replies are sometimes private.

    … the message I have when I choose a topic is “You cannot reply to this topic”.
    And I don’t want to write anything, I only want to read the topic content.
    If replies are private, I undersatnd that I cannot read the replies.
    Thank you.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Seventhqueen Forums #117329
     egabillat
    Participant

    I don(t speak of private replies but of topics
    Are these topics PRIVATE ?
    https://archived.seventhqueen.com/forums/topic/enable-top-social-bar-on-home-page
    https://archived.seventhqueen.com/forums/topic/paid-membership-only-site
    https://archived.seventhqueen.com/forums/topic/how-to-add-wishlist-page-in-o-rder-list-to-my-page
    https://archived.seventhqueen.com/forums/topic/group-invites
    and many others !!!
    If not, I don’t understand.
    For 2 years of reading osts of your forums, I never had this problem, no indication to see if topics are private.

    in reply to: Kleo Posts Recents widget #112242
     egabillat
    Participant

    Hi Andrei.
    See attached files.

    Attachments:
    You must be logged in to view attached files.
    in reply to: GeoDirectory search #107883
     egabillat
    Participant

    @rikbutterflyskull
    Hi !
    your code work fine, thank you !

    in reply to: GeoDirectory search #107232
     egabillat
    Participant

    See “écran.png” picture : “rechercher” is not on the same Line as other fiels. It’s not beautiful ! And the same shortcode used with advance search is worth : not Kleo like theme.

    in reply to: GeoDirectory search #107105
     egabillat
    Participant

    Precision : All my plugins and Kleo updated !

    in reply to: GeoDirectory search #107103
     egabillat
    Participant

    Thank you Laura but not the good solution.
    I’ll not use the shortcode.
    Perhaps an idea for this display issue…? See attach picture.
    Bon week-end.

    Attachments:
    You must be logged in to view attached files.
    in reply to: geodirectory #100757
     egabillat
    Participant

    Excuse my poor english…
    I dont’t want notifications, I want user activity updated.

    See 1 :
    https://wpgeodirectory.com/downloads/buddypress-integration/

    See 2 :
    https://docs.wpgeodirectory.com/buddypress-integration-add-on-overview/

    Attachments:
    You must be logged in to view attached files.
    in reply to: geodirectory #100744
     egabillat
    Participant

    robert198222 said “Notifications for reviews are not working with geodirectory+KLEO”
    and I want to explain I have the same issue despite BuddyPress addon.
    I am waiting Kleo 4.0 to see if notifications for reviews will work for Geodirectory with KLEO.

    in reply to: geodirectory #100715
     egabillat
    Participant

    Hi,
    I use GeoDirectory Events and Buddypress integration addons
    If I create a new event, it appear in activity stream.
    If someone review a place or an event… nothing in activity stream.
    An idea ?
    Thank you

    in reply to: Update? anytime soon? #99812
     egabillat
    Participant

    OK for Themeforest.
    But is there a bug for you…

    Attachments:
    You must be logged in to view attached files.
    in reply to: Update? anytime soon? #99793
     egabillat
    Participant

    From SEPTEMBER 12, 2015 AT 19:25
    nothing new on “KLEO Updates Change Log” forum !
    😉

    in reply to: Update? anytime soon? #99714
     egabillat
    Participant

    And when KLEO is updated, is it possible to update also “KLEO Updates Change Log” topic simultaneously ?

    in reply to: Who can help me ? #90252
     egabillat
    Participant

    Hi Laura !
    Thank you for your answer.
    I’ll need your help soon in 2016 !!
    😉

    in reply to: Who can help me ? #89936
     egabillat
    Participant

    Hi Laura.
    I can’t… I’m testing on localhost (MAMP Os X)

    in reply to: Activity bug… #89600
     egabillat
    Participant

    Hi,
    everything seems to work fine.
    Thank you.

Viewing 40 posts - 1 through 40 (of 68 total)

Log in with your credentials

Forgot your details?