• Resolved SmilePeople

    (@smilepeople)


    I have installed the Quoty plugin today, 1/6/2016

    When I tried to activated the plugin ,
    the WP informed me that there was a error on line 40 quoty.php

    I download the quoty.php file and I saw the following line
    $platforms = array(‘social-platforms’ => [‘facebook’, ‘twitter’,’googleplus’,’pinterest’,’linkedin’] );

    I removed [

    $platforms = array(‘social-platforms’ => ‘facebook’, ‘twitter’,’googleplus’,’pinterest’,’linkedin’);

    I activated the plugin but nothing happend

    I read the forum

    so on Plugin’s Setting:
    I put
    CSS Selector *

    CSS Selector body p ,

    However nothing works
    Version 1.1.4

    Thank you

    https://wordpress.org/plugins/quoty/

Viewing 1 replies (of 1 total)
  • Plugin Author TNT Studio

    (@tntstudiohr)

    If the error really is on line 40 in quoty.php than you have a very old version of php < 5.4
    that doesn’t support the [] syntax.
    What you should do is:

    $platforms = array(‘social-platforms’ => array( ‘facebook’, ‘twitter’,’googleplus’,’pinterest’,’linkedin’));

    Or a better solution, upgrade the PHP version to at least 5.6

Viewing 1 replies (of 1 total)
  • The topic ‘Proble with activate and not only’ is closed to new replies.