• Resolved caleus

    (@caleus)


    Hallo ich hoffe hier ist jemand der mir helfen kann und zwar nutze ich WordPress mit dem Shapely Version: 1.0.2 Theme leider habe ich das problem das daß Gästebuch dadurch leider nicht funktioniert ich kann den Button drücken so viel ich will es geht nicht.

    Gruß Caleus

    https://wordpress.org/plugins/gwolle-gb/

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Hi, my German isn’t that great, but when you press the “Add new entry” it doesn’t open the form I assume.

    Can you share the link to your website?

    And also, you did update all plugins and your theme?

    When I test my plugin with Shapely I see an error in the console about flexslider not being a function. Do you see the same error in the Console-tab of your Inspector?

    Thread Starter caleus

    (@caleus)

    So I have this text translated at google sorry for let

    yes exactly FORM is not shown and unfortunately it runs on XAMPP
    Console where I see in FIREFOX?

    CAleus

    Plugin Author Marcel Pol

    (@mpol)

    Ah, okay, then we are talking about the same thing 🙂

    You can right-click on the page and select “Inspect element”.
    You will get a sub-screen at the bottom. Click the Console-tab, and you should see errors. It might be that you need to reload the page.

    Thread Starter caleus

    (@caleus)

    TypeError: $(...).flexslider is not a function
    <anonym>
    shapely-scripts.js:139
    n.Callbacks/i()
    jquery.js:2
    n.Callbacks/j.fireWith()
    jquery.js:2
    .ready()
    jquery.js:2
    K()

    So I get shown in the console. I can now do everything plugins and themes, etc. are currently

    Caleus

    Plugin Author Marcel Pol

    (@mpol)

    Ah, the same error I had.

    You can “solve” it by editing functions.php of your theme.

    You can change these parts:

    // Add slider CSS only if is front page ans slider is enabled
        if( ( is_home() || is_front_page() ) ) {
          wp_enqueue_style( 'flexslider-css', get_template_directory_uri().'/inc/css/flexslider.css' );
        }

    to:

    // Add slider CSS
          wp_enqueue_style( 'flexslider-css', get_template_directory_uri().'/inc/css/flexslider.css' );

    and

    // Add slider JS only if is front page ans slider is enabled
        if( ( is_home() || is_front_page() ) ) {
          wp_enqueue_script( 'flexslider-js', get_template_directory_uri() . '/js/flexslider.min.js', array('jquery'), '20160222', true );
        }

    to:

    // Add slider JS
          wp_enqueue_script( 'flexslider-js', get_template_directory_uri() . '/js/flexslider.min.js', array('jquery'), '20160222', true );

    Plugin Author Marcel Pol

    (@mpol)

    The real solution is BTW contacting the people who made this theme and tell them your issue. You could point them to this thread.
    That way a new update should contain a fix.

    Thread Starter caleus

    (@caleus)

    Super it works thanks.
    Yes I will write to the people of Colorlib and this link notified so that they can include it with the next update.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘New Entry Button ohne Funktion’ is closed to new replies.