Forum Replies Created

Viewing 40 posts - 1 through 40 (of 42 total)
  • Author
  • in reply to: problem in kleo posts module images #173245
     creamundo
    Participant

    I really dont like this solution, this ir not really a solution, but have no other option…

    in reply to: problem in kleo posts module images #172743
     creamundo
    Participant

    Hi there!

    – All post are standard post
    – Using kleo without child theme
    – all plugins deactivated except k Elements and Visual composer

    and the problem is still there.

    (I will reactivate all plugins, (but you can test yourself deactivating it again when you need)

    in reply to: problem in kleo posts module images #172582
     creamundo
    Participant
    This reply has been set as private.
    in reply to: problem in kleo posts module images #172287
     creamundo
    Participant
    This reply has been set as private.
    in reply to: problem in kleo posts module images #172013
     creamundo
    Participant
    This reply has been set as private.
     creamundo
    Participant
    Not marked as solution
     creamundo
    Participant
    Not marked as solution
    in reply to: Bug with EventsOn #142462
     creamundo
    Participant

    all if fine now!!!
    GOOOOOOD JOB!!!!!

    in reply to: Bug with EventsOn #141840
     creamundo
    Participant
    This reply has been set as private.
    in reply to: Bug with EventsOn #141839
     creamundo
    Participant
    This reply has been set as private.
    in reply to: Bug with EventsOn #141157
     creamundo
    Participant

    Thanks, lots of thanks.
    Do you think the fix is going to come soon?
    thanks.

    in reply to: Bug with EventsOn #140564
     creamundo
    Participant
    This reply has been set as private.
    in reply to: Bug with EventsOn #140319
     creamundo
    Participant

    Hi there,
    The problem is on the last update of the theme, if I roll back to 4.1.14 all runs well.
    Now I’m on 4.1.14 but hope you fix it.

    in reply to: ajax search problem with shortcode #127927
     creamundo
    Participant

    yep!

    now it runs!!!!
    Thanks very very much Radu!!!

    you rocks!!!

    in reply to: ajax search problem with shortcode #127718
     creamundo
    Participant

    Hi Radu,

    Same problem with all plugins deactivated except k-elements and visual composer:
    I have a test site in https://www.delincuente.com where you can test it without plugins. Same behavior, All is ok from the search (glass) in the menú but not from the sidebar.

    Any idea?

    Regards from Spain. 😉

    in reply to: bug in search custom post type #127717
     creamundo
    Participant
    Not marked as solution
    in reply to: bug in search custom post type #127427
     creamundo
    Participant
    Not marked as solution
    in reply to: bug in search custom post type #127347
     creamundo
    Participant
    Not marked as solution
    in reply to: bug in search custom post type #126577
     creamundo
    Participant
    Not marked as solution
    in reply to: bug in search custom post type #126550
     creamundo
    Participant
    Not marked as solution
    in reply to: link to user profile #125010
     creamundo
    Participant
    Not marked as solution
    in reply to: Translate of bp profile search #124769
     creamundo
    Participant
    Not marked as solution
    in reply to: Problem with profile picture #119018
     creamundo
    Participant
    Not marked as solution
    in reply to: Problem with profile picture #118993
     creamundo
    Participant
    Not marked as solution
     creamundo
    Participant

    I have this message when i use this url:

    “You dont have permissions enought to see this page.” (in spanish)

    thanks.

    in reply to: add a gallery under member header #79473
     creamundo
    Participant

    you are right!
    I thought this was a Kleo funtion.

    Thanks for your good job.

    in reply to: add a gallery under member header #79363
     creamundo
    Participant

    yeah!!!! this is perfect!!! it’s running perfect!!!!
    only one more question (hope not abuse)… how could I link each picture with the lightbox? i prefer this than the link to the gallery image…

    in reply to: add a gallery under member header #79335
     creamundo
    Participant

    Hi,

    I did what you say, and it takes the correct place. The only things is that the code you pasted is not ok.
    I think there is an error in the < a > declaration and I only can see an error. I attach an screenshot.

    Attachments:
    You must be logged in to view attached files.
    in reply to: add a gallery under member header #79319
     creamundo
    Participant

    Hi, Sharmstr

    Sorry for the mistake, you have administrator credentials updated now.

    Thanks for your job.

    in reply to: add a gallery under member header #79300
     creamundo
    Participant
    This reply has been set as private.
    in reply to: add a gallery under member header #79236
     creamundo
    Participant

    Hi,
    Same version here…
    Do you want admin access to my test site to try the code?

    in reply to: add a gallery under member header #79201
     creamundo
    Participant

    Hi,
    Now my code is like this:

    COPY CODE
    
    add_action('bp_init', 'add_user_images', 2);
    function add_user_images () {
        if (bp_is_user()){
            add_action('kleo_before_main_content', 'show_last_n_images', 99);
        }
    
    }
    function show_last_n_images() {
    $n = 5;
    if( $user_id = bp_displayed_user_id() ) {
    $model = new RTMediaModel();
    $results = $model->get( array( 'media_type' => 'photo', 'media_author' => $user_id ), 0, $n );
    if( $results ) {?>
    <ul>
    <?php foreach( $results as $image ) { ?>
    <li>
    <div class="rtmedia-item-thumbnail" id="foto-home-perfil">
    <a>id ); ?>" title="<?php echo $image->media_title; ?>">
    <img />id ); ?>" alt="<?php echo rtmedia_image_alt( $image->id );?>" />
    </a>
    </div>
    </li>
    <?php } ?>
    <div id="ver-mas-fotos"><a href="/media">Ver más fotos</a></div>
    </ul>
    <?php
    }
     }
    }
    

    But it still shows the gallery in the top of the cover photo, and i need it UNDER the cover photo. I attach an screenshot.

    Attachments:
    You must be logged in to view attached files.
    in reply to: add a gallery under member header #78973
     creamundo
    Participant

    hi @sharmstr ,

    now i put the code like you said, like this:

    if (bp_is_user()){
    add_action( ‘kleo_before_main_content’, ‘show_last_n_images’, 99 );}
    function show_last_n_images() {
    $n = 5;
    if( $user_id = bp_displayed_user_id() ) {
    $model = new RTMediaModel();
    $results = $model->get( array( ‘media_type’ => ‘photo’, ‘media_author’ => $user_id ), 0, $n );
    if( $results ) {?>

    <?php
    }
    }
    }

    but it wont work, if I delete the conditional “if (bp_is_user()){… and start with the add_action it shows the pictures OVER the cover profile photo but I need it UNDER the cover profile photo (I tried to change kleo_before_main_content for kleo_under_main_content but it put the pictures near the footer….)

    The problem with the profile link is just near those pictures, I whant a link to “show more pictures” that links to the media tab: <div id=”see-more-pictures”>Show more pictures</div> but it wont work, I supose that it is because it not in the menu…

    Thanks for all, you are helping me a lot.
    Sorry for my bad english…

    in reply to: add a gallery under member header #78878
     creamundo
    Participant

    Hi,

    Question 3 is solved, I made a translate mistake and its solved already.
    Here you have an screenshot of the other problems.

    Attachments:
    You must be logged in to view attached files.
    in reply to: problem in geodirectory #78868
     creamundo
    Participant

    Hi all,

    The problem is solved now. There is an update in GeoMyWp that fix the problem. It look like there was their mistake.

    Thanks for all.

    in reply to: problem in geodirectory #78352
     creamundo
    Participant

    hi @andrei, nice to hear you so quick.

    The matter is that Geo my Wp (it is very usefull with Kleo) has a tool to export the configuration and import in the other domain, and i did it, but it wont work…
    It’s a very good idea to integrate this plugin with Kleo, they are in the same line integrating their addon with you.
    Could I pay for someone who looks my project to fix this problem? how much could it be?

    thanks for your quick answer.

    Regards from Spain.

    in reply to: problem in geodirectory #78337
     creamundo
    Participant

    Hi Laura,

    I made a mistake in the name of the plugin, the real name is not geodirectory, but “Geo my WP”.
    This plugin runs in this way:

    1) have positions for members and posts
    – this plugin can creat 2 forms, one for search membes and one for search posts based on location.
    – membes and post can have locations and they really have.
    – this part can have a widget in the sidebar
    2) have a plugin for kleo membes page (optional and paid)
    – this plugin ads a search for membes based on location IN the members search page

    The problem is:
    I have two installs of Kleo, a test install and a production install, both with the same configuration, both with the same plugins and configurations.
    In the test install (with a .net domain) both sides of the plugin runs ok (the widget and the search default plugin and the kleo plugin) but in the production install (.land domain) only runs the kleo addon, not the default search and widget…

    is it posible that the domain is the problem? all the rest are the same…

    thanks for your job, but i need your help.

    Regards from Spain and sorry again for my bad english…

    in reply to: problem in geodirectory #77985
     creamundo
    Participant

    Hi Laura,

    the problem is that it doen’t work, i need that someone look whats appening, i have to domains with two identical installs (one domain is the test domain only) and it runs ok only in the test domain with the same configuration. Perhaps a bug with the kleo addon?

    in reply to: masonry display problem #58387
     creamundo
    Participant

    Hi,

    I use this:

    #buddypress .rtmedia-container .rtmedia-list .rtmedia-list-item {
    height: auto;
    margin-bottom: 3px;
    width: 32%;
    }

    in mi child theme.

    in reply to: masonry display problem #57987
     creamundo
    Participant

    Hi,

    Now I know where is the problem, but no how to fix it.
    I see that the problem is in the css, there ir a fixed value the css and if i remove it I can see the masonry very well.
    I attach the capture with the problem.

    thanks in advanced.

    Attachments:
    You must be logged in to view attached files.
Viewing 40 posts - 1 through 40 (of 42 total)

Log in with your credentials

Forgot your details?