Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Forum: Plugins
    In reply to: [After Content] No working
    Plugin Author laura20

    (@laura20)

    for the time being i don`t know why this occurs. The other option works? Pagination, author…?

    Do you use the_content() for showing post content? Or modification?

    I’m sorry I can not help more.

    Forum: Plugins
    In reply to: [After Content] No working
    Plugin Author laura20

    (@laura20)

    Have you put it manualy? or have you activate? put here a link please, or more details.

    Forum: Plugins
    In reply to: [WP-Basics] Error
    Plugin Author laura20

    (@laura20)

    you’re welcome. I’m glad I helped.

    Forum: Plugins
    In reply to: [WP-Basics] Error
    Plugin Author laura20

    (@laura20)

    Go to the file D:\xampp\htdocs\wp4shop\wp-content\plugins\wp-basics\admin\classes\class.options_machine.php and change the line 229:

    Wrong:

    foreach ($value['options'] as $key => $option) {
    if (!isset($multi_stored[$key])) {$multi_stored[$key] = '';}
    $of_key_string = $value['id'] . '_' . $key;
    $output .= '<input type="checkbox" class="checkbox of-input" name="'.$value['id'].'['.$key.']'.'" id="'. $of_key_string .'" value="1" '. checked($multi_stored[$key], 1, false) .' /><label class="multicheck" for="'. $of_key_string .'">'. $option .'</label><br />';
    }

    Good:

    foreach ($value['options'] as $key => $option) {
    //if (!isset($multi_stored[$key])) {$multi_stored[$key] = '';}
    $of_key_string = $value['id'] . '_' . $key;
    $output .= '<input type="checkbox" class="checkbox of-input" name="'.$value['id'].'['.$key.']'.'" id="'. $of_key_string .'" value="1" '. checked($multi_stored[$key], 1, false) .' /><label class="multicheck" for="'. $of_key_string .'">'. $option .'</label><br />';
    }

    Is better if you only comment it. Tell me if this solve the error please.

    Thread Starter laura20

    (@laura20)

    thanks Jeremy!

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