Error: Missing required field

Home Forums WordPress Theme Support BresponZive Mag Error: Missing required field

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #2405
    Nasir
    Member
    This reply has been marked as private.
    #2407
    Raja CRN
    Keymaster

    Hi,

    That’ll be fixed in next theme update(1 to 2 days).

    Thanks

    #2518
    Nasir
    Member

    Hi,
    I am getting this error with your themes.
    Warning Creating default object from empty value in /home/sitename/public_html/wp-content/themes/bresponzive_pro/header.php on line 123

    #2519
    Raja CRN
    Keymaster

    Hi,

    To fix this, you have to edit the Header.php file and follow the instructions. We’ll update the theme later with this fix.

    Current code:

    $term = '';
    $term->term_id = '';
    $term = get_term_by('name', $data['ticker_category'], 'category');			
    $tpcrn_tickerposts = new WP_Query(array(
    'showposts' => $data['ticker_post_no'],
    cat' => $term->term_id,

    Replace the above code with below,

    New Code:

    $ti_cat = get_cat_ID($data['ticker_category']);
     $tpcrn_tickerposts = new WP_Query(array(
    'showposts' => $data['ticker_post_no'],
    'cat' => $ti_cat ,
    #2522
    Nasir
    Member

    thanks

Viewing 5 posts - 1 through 5 (of 5 total)

Only Verified Customer of this Theme Can post reply to this Support Topic! .