Forum Replies Created

Viewing 24 posts - 41 through 64 (of 64 total)
  • Author
  •  lopreg
    Participant

    Not at all. The problem also occurs on default 2015 theme

    in reply to: How To Reduce Page Content Padding #83343
     lopreg
    Participant

    ‘will do that right away. Thanks again!

    in reply to: How To Reduce Page Content Padding #83339
     lopreg
    Participant

    Yeah, it seems to be ok now. Thanks a lot!

    in reply to: Add Item After First Post on Archive pages #83317
     lopreg
    Participant

    Wow, thanks a lot for this Radu. It worked like charm 🙂

    in reply to: Add Item After First Post on Archive pages #83018
     lopreg
    Participant

    Anyone else here willing to assist with this, please?

    in reply to: How To Reduce Page Content Padding #83015
     lopreg
    Participant

    Hi @Radu

    I trust you are having a great time. Please, I am still waiting for your response. Thanks.

    in reply to: How To Reduce Page Content Padding #82770
     lopreg
    Participant
    This reply has been set as private.
    in reply to: Add Item After First Post on Archive pages #82697
     lopreg
    Participant

    Hi @Radu,

    Please, remember to look into this. Thanks

    in reply to: How To Reduce Page Content Padding #82695
     lopreg
    Participant

    Hell @Radu
    Thanks a lot for this. It worked!
    Please, is there also a way, I can move the button elements up closer to the widgetized sidebar elements?

    in reply to: How To Reduce Page Content Padding #82505
     lopreg
    Participant
    This reply has been set as private.
    in reply to: How To Reduce Page Content Padding #82217
     lopreg
    Participant

    Hi,
    Please, see http://campusportalng.com/.
    I used Visual Composer for the homepage design and it added even more empty spaces as you can see on the site.
    I tried some of the suggestions on the forum here, but I wasn’t still able to get rid of all the empty spaces. So I reverted to defaults for you to see. Thanks for anticipated kind response.

    in reply to: Add Item After First Post on Archive pages #82216
     lopreg
    Participant
    This reply has been set as private.
    in reply to: Add Item After First Post on Archive pages #82215
     lopreg
    Participant

    Thanks for the response, Radu. I am using the small left thumbnail display type

    in reply to: How To Reduce Page Content Padding #82004
     lopreg
    Participant

    Hello,

    Anyone here?

    in reply to: Add Item After First Post on Archive pages #82003
     lopreg
    Participant

    Hello,

    Advice on this please.

    in reply to: Userpro vs s2member vs Paid Memberships pro #81391
     lopreg
    Participant

    Hi @laura, any update on this please?

    in reply to: Userpro vs s2member vs Paid Memberships pro #80736
     lopreg
    Participant

    It appears a lot of people are asking same question as I am. Please see http://codecanyon.net/item/userpro-user-profiles-with-social-login/5958681/comments?utf8=%E2%9C%93&term=manually+hook+in+permalink%28%29&from_buyers_and_authors_only=0&order_by=relevance

    My problem is, I can’t seem to find how to implement the solution suggested there. Any help on this will be greatly appreciated cos I don’t seem to have any other option but to get userpro work with buddypress due to the nature of my project.
    Please see the content of the api.php file below;

    (edit – I’ve attached the file instead since this post shows up in search results and we have to scroll far down to get past it.)

    Attachments:
    You must be logged in to view attached files.
    in reply to: Userpro vs s2member vs Paid Memberships pro #80691
     lopreg
    Participant

    That will be great @laura. I have been scanning the net all day for a solution to this. I will really love to be able to redirect userpro profile to buddypress profile as s2member is not giving me exactly all I need

    in reply to: Userpro vs s2member vs Paid Memberships pro #80534
     lopreg
    Participant

    Hi, Anyone here?

    in reply to: Front End Jump Menu #79851
     lopreg
    Participant

    Wow. You are a life saver! That was actually where I got it wrong. It worked out immediately I created the correct file path you stated above. Thanks and Thanks again for your patience and understanding

    in reply to: Front End Jump Menu #79849
     lopreg
    Participant

    Hi,
    Sorry to bother you. I didn’t actually delete the add action code, I only temporarily tested the form code alone to be sure nothing is wrong with it. Your code actually fixed my bad function code but my form didn’t get to display anywhere on the page. I have also moved the general-header-section.php file to my child’s theme like you suggested but adding the code to the bottom did not still display the form anywhere.
    I suspect something is preventing it from appearing below the menu because when I placed the form code alone in the function.php, it appeared at the top most of the site.

    Please, don’t be upset. I know this is not supported, I am only asking for your help as I couldn’t get help elsewhere.
    Thanks for your anticipated kind response.

    in reply to: Front End Jump Menu #79843
     lopreg
    Participant

    Thanks a lot for the response. I tried the code but the form didn’t display anywhere on the site.
    If I add only the form code without the function my_header_menu() code, the form display but not positioned in the desired location. Kindly review the code you supplied me. Thanks again.

    in reply to: Front End Jump Menu #79817
     lopreg
    Participant

    After doing a google search, I came across this page http://codex.wordpress.org/Template_Tags/wp_dropdown_categories.

    The issue I am having now is how to properly add the code to the function without breaking the site. Please, pardon me, am not that great with php.
    Here is what I have at the moment which breaks on line 25;
    <?php
    /**
    * @package WordPress
    * @subpackage Kleo
    * @author SeventhQueen <themesupport@seventhqueen.com>
    * @since Kleo 1.0
    */

    /**
    * Kleo Child Theme Functions
    * Add custom code below
    */
    add_action( ‘wp_enqueue_scripts’, ‘load_buddypress_js’ );
    function load_buddypress_js () {
    if (bp_is_group() || is_page( ‘activity’ )) {
    wp_enqueue_script(‘buddypress_query’,plugins_url() . ‘/buddypress/bp-core/js/jquery-query.min.js’,array(“jquery”));
    wp_enqueue_script(‘buddypress_members’,plugins_url() . ‘/buddypress/bp-core/js/widget-members.min.js’,array(“jquery”));
    wp_enqueue_script(‘buddypress_cookie’,plugins_url() . ‘/buddypress/bp-core/js/jquery-cookie.min.js’,array(“jquery”));
    wp_enqueue_script(‘buddypress_scroll’, plugins_url() . ‘/buddypress/bp-core/js/jquery-scroll-to.min.js’, array(“jquery”));
    wp_enqueue_script(‘buddypress_js’,get_template_directory_uri() . ‘/buddypress/js/buddypress.min.js’,array(“jquery”));
    }
    }
    add_action(‘kleo_before_content’,’my_header_menu’);
    function my_header_menu() {
    <li id=”categories”>
    <h2><?php _e( ‘Posts by Category’ ); ?></h2>
    <form id=”category-select” class=”category-select” action=”<?php echo esc_url( home_url( ‘/’ ) ); ?>” method=”get”>

    <?php
    $args = array(
    ‘show_option_none’ => __( ‘Select category’ ),
    ‘show_count’ => 1,
    ‘orderby’ => ‘name’,
    ‘echo’ => 0,
    );
    ?>

    <?php $select = wp_dropdown_categories( $args ); ?>
    <?php $replace = “<select$1 onchange=’return this.form.submit()’>”; ?>
    <?php $select = preg_replace( ‘#<select([^>]*)>#’, $replace, $select ); ?>

    <?php echo $select; ?>

    <noscript>
    <input type=”submit” value=”View” />
    </noscript>

    </form>

    }

    in reply to: Front End Jump Menu #79689
     lopreg
    Participant
    This reply has been set as private.
Viewing 24 posts - 41 through 64 (of 64 total)

Log in with your credentials

Forgot your details?