Forum Replies Created

Viewing 40 posts - 1 through 40 (of 60 total)
  • Author
  • in reply to: Fatal error: Call to a member function #127045
     Admin123
    Participant
    Not marked as solution
    in reply to: Fatal error: Call to a member function #127004
     Admin123
    Participant
    Not marked as solution
    in reply to: Fatal error: Call to a member function #127001
     Admin123
    Participant
    Not marked as solution
    in reply to: Fatal error: Call to a member function #127000
     Admin123
    Participant
    Not marked as solution
    in reply to: Fatal error: Call to a member function #126999
     Admin123
    Participant
    Not marked as solution
    in reply to: Logo linkable #125220
     Admin123
    Participant
    Not marked as solution
    in reply to: Portfolio is Blank #119440
     Admin123
    Participant

    Thank you!

    in reply to: Portfolio is Blank #119276
     Admin123
    Participant
    This reply has been set as private.
    in reply to: Portfolio is Blank #119266
     Admin123
    Participant

    That strange because this config.php did not exist before, I cannot recalled the database for the last config.php uploaded. I think you have probably dragged and dropped this on the FTP which has then overwritten that one. But this is working now. The site is good to go. so please look into this.

    Greatly appreciated.

    in reply to: Portfolio is Blank #119258
     Admin123
    Participant

    I have changed the config.php I think you uploaded a different config.php with a different database login and password.

    in reply to: Portfolio is Blank #119257
     Admin123
    Participant

    Done Could you look into this please

    in reply to: Portfolio is Blank #119228
     Admin123
    Participant

    Please help me, it has been almost 2 weeks..

    in reply to: Portfolio is Blank #119227
     Admin123
    Participant
    This reply has been set as private.
    in reply to: Portfolio is Blank #119226
     Admin123
    Participant
    This reply has been set as private.
    in reply to: Portfolio is Blank #118716
     Admin123
    Participant

    Ok. Please this is urgent… I really appreciate your help.

    in reply to: Portfolio is Blank #118442
     Admin123
    Participant

    Anything??

    in reply to: Portfolio is Blank #118350
     Admin123
    Participant
    This reply has been set as private.
    in reply to: Portfolio is Blank #118345
     Admin123
    Participant

    Individual categories are working perfect when I go to SINGLE catgories ( I have 27) and click view ON EACH page, you see them but the filers of K-element of PORTFOLIO is not working at all. Only when you EXCLUDES ALL items it works ( BUT doesnt show all the categories, when selecting ALL nothing shows) . So it is a problem with the portfolio files itself.

    The filtering is not working, the page itself with OVERLAY and DEFAULT.

    in reply to: Portfolio is Blank #118344
     Admin123
    Participant

    Config.php

    define(‘WP_MEMORY_LIMIT’, ‘1024M’);

    Have you seen the video?

    in reply to: Portfolio is Blank #118343
     Admin123
    Participant

    This is how it is at the moment

    safe_mode = off;

    memory_limit = 1024M; Maximum amount of memory a script may consume (1024MB)

    upload_max_filesize = 1024M

    post_max_size = 1024M

    max_execution_time = 200

    in reply to: Portfolio Issues. #118163
     Admin123
    Participant

    Hi

    There is a problem with Portfolio file. At first my page was blank upon update so I have disabled all plugins and the error seem to not disppear but disabling k_element would make the page normal ( without picking up the code obviously)

    What I found is:

    1.If you set portfolio display type to Overlay or default the page goes blank.
    2. Categories ALL – Make nothing of the categories appear
    3. Categories are only appearing with you do an exclude rather than an include.
    4. I have set atleast 10 different categories that are not being pick on.

    Please see the video attached

    Attachments:
    You must be logged in to view attached files.
    in reply to: Portfolio is Blank #118159
     Admin123
    Participant

    Hi

    There is a problem with Portfolio file. At first my page was blank upon update so I have disabled all plugins and the error seem to not disppear but disabling k_element would make the page normal ( without picking up the code obviously)

    What I found is:

    1.If you set portfolio display type to Overlay or default the page goes blank.
    2. Categories ALL – Make nothing of the categories appear
    3. Categories are only appearing with you do an exclude rather than an include.
    4. I have set atleast 10 different categories that are not being pick on.

    Please see the video attached

    Attachments:
    You must be logged in to view attached files.
    in reply to: Portfolio is Blank #118129
     Admin123
    Participant

    It is not picking up all the categories tagged?

    in reply to: Portfolio is Blank #118003
     Admin123
    Participant

    Ok now i can see this but it is not showing tag items?

    I have given you Admin and Password.. Please I think it is a bug because earlier this whole page was blank, now only one item was showing, then after 15 mins, nothing is shown.

    I have like 20 portfolio at the back tagged within these catgories shown on the image but its not even sshowing on front end.
    🙁

    Thank you!!

    Samirah

    Attachments:
    You must be logged in to view attached files.
    in reply to: Portfolio is Blank #117977
     Admin123
    Participant
    This reply has been set as private.
    in reply to: Portfolio is Blank #117947
     Admin123
    Participant

    I have desactivated all plugins and the K element is causing this.

    in reply to: Portfolio is Blank #117849
     Admin123
    Participant

    Please could you assist me?

    in reply to: Portfolio is Blank #117729
     Admin123
    Participant
    This reply has been set as private.
    in reply to: Portfolio is Blank #117727
     Admin123
    Participant
    This reply has been set as private.
    in reply to: Portfolio is Blank #117574
     Admin123
    Participant

    My Portfolio.php has not changed?

    <?php

    /*
    *
    * Portfolio Items Functions
    * KLEO Framework
    *
    */

    /* PORTFOLIO ITEMS
    ================================================== */
    if (!function_exists(‘kleo_portfolio_items’)) {

    function kleo_portfolio_items( $display_type = ‘default’, $title_style = ‘normal’, $columns = 4, $item_count = NULL, $pagination = “no”, $filter = ‘yes’, $excerpt = ‘yes’, $img_width = ”, $img_height = ”, $category = ”, $exclude_categories = array() ) {

    /* OUTPUT VARIABLE
    ================================================== */
    $portfolio_items_output = “”;
    $count = 0;

    /* CATEGORY SLUG
    ================================================== */
    if ($category == “All” || $category == “all”) {
    $category = ”;
    }
    $category_slug = str_replace(‘_’, ‘-‘, $category);

    /* PORTFOLIO QUERY
    ================================================== */
    global $post, $wp_query;

    if ( get_query_var(‘paged’) ) {
    $paged = get_query_var(‘paged’);
    } elseif ( get_query_var(‘page’) ) {
    $paged = get_query_var(‘page’);
    } else {
    $paged = 1;
    }

    if ( $exclude_categories == ” ) {
    $exclude_categories = array();;
    }
    $portfolio_args = array(
    ‘post_type’ => ‘portfolio’,
    ‘post_status’ => ‘publish’,
    ‘paged’ => $paged,
    apply_filters( ‘kleo_portfolio_cat_slug’, ‘portfolio-category’ ) => $category_slug,
    ‘posts_per_page’ => $item_count,
    ‘tax_query’ => array(
    array(
    ‘taxonomy’ => apply_filters( ‘kleo_portfolio_cat_slug’, ‘portfolio-category’ ),
    ‘field’ => ‘id’,
    ‘terms’ => $exclude_categories,
    ‘operator’ => ‘NOT IN’
    )
    )
    );

    $portfolio_args = apply_filters( ‘portfolio_args’, $portfolio_args );

    $portfolio_items = new WP_Query( $portfolio_args );

    in reply to: Portfolio is Blank #117567
     Admin123
    Participant

    Hello Radu,

    Thank you for always reverting back to me in a professional manner, absolutely appreciate it.

    I have checked all plugins and they are all upto date with no exception.

    When I go to single portfolio pages in Portfolio and click view for each single portfolio page, I see the videos, gallery etc.

    But I previous had something similar to this http://seventhqueen.com/themes/kleo/portfolio/ And it is now not working.

    Please help me? 🙂

    Thank you.

    Samirah

    in reply to: Kleo update, button color #115360
     Admin123
    Participant

    Working thank you!!! 🙂

    in reply to: Kleo update, button color #115344
     Admin123
    Participant
    This reply has been set as private.
    in reply to: Kleo update, button color #115319
     Admin123
    Participant

    Hi

    I am having the same issues. I have already inserted your code but nothing’s changed?

    please help 🙂

    Sam

    Attachments:
    You must be logged in to view attached files.
     Admin123
    Participant

    Hello 🙂

    Thank you for responding. I am using wp- super cache at the moment and ive disabled even the plugin to see if it was the cause but nothing’s changed.

    Why is it not redirecting when i do refresh?

    thank you!!

    in reply to: Widget Visibility #80130
     Admin123
    Participant

    Hi Pandreas,

    I actually did not use the widget. What i did do though, i wanted my second page to redirect to my home page when i log off. What it was doing before, once you log off, you stay on the same page and you cannot see the content of the page ( Which you do not want others to see – the point of having a membership) but the widget content information was showing. What i did, once you log off, it redirects to the front page.

    in reply to: Registration Field #74498
     Admin123
    Participant

    Thank you so much for helping me. Its working now 🙂

    Oh that’s because i wanted to add a Captcha as there were too many registrations – Spam. Do you reckon it shouldn’t be placed here?

    Thank you again 🙂

    Sam

    in reply to: Registration Field #74466
     Admin123
    Participant
    This reply has been set as private.
    in reply to: Registration Field #74381
     Admin123
    Participant

    Hi @sharmstr

    Thanks for getting back to me.

    I did input this details where you advised you. But it doesnt seem to take effect?

    See the images below.

    Thank you very much for your help 🙂

    Sam

    Attachments:
    You must be logged in to view attached files.
    in reply to: Registration Field #73885
     Admin123
    Participant

    arse error: syntax error, unexpected ‘.’ in /homepages/xxxxxxxxxxx/xxxxxxxxxx/xxxxxxxx/wp-content/themes/kleo-child/functions.php on line 284

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

Log in with your credentials

Forgot your details?