Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)
  • Ok found it !

    I don’t know if it will work for you @gtjr92 but here how i fixed mine :

    Problem :
    – Conflict between a version of jQuery defined in the header.php (bad pratice, i was a newbie when i made this)
    – An old version of jQuery was loaded after mine by WordPress (1.4.2, my website is a little bit old, made the upgrade today).

    Solution :
    I added this in my functions.php

    function theme_name_scripts() {
    	wp_deregister_script('jquery');
    	wp_register_script('jquery', ("https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"), false, '');
    	wp_enqueue_script('jquery');
    }
    
    add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );

    By doing that, i remove the initial jquery version, and replace it with the latest from Google. ??
    Everything works like a charm now

    Hi ??
    Same problem here :'(

    Slideshow doesn’t start, images are loaded, but the “preload” <div> stays.

    Looks like the JS doesn’t load. I’ll try to see why ??

    Thread Starter Kheltdire

    (@kheltdire)

    Ok found it ! o/

    My sidebar was called before the_content();

    It’s fixed. I’m so glad :3

    Same here :/

    Warning: include_once(inc/upgrade-notice.php) [function.include-once]: failed to open stream: No such file or directory in /home/XXXX/www/wp-content/plugins/google-calendar-events/google-calendar-events.php on line 66
    
    Warning: include_once() [function.include]: Failed opening 'inc/upgrade-notice.php' for inclusion (include_path='.:/usr/local/php5.3/lib/php') in /home/XXXX/www/wp-content/plugins/google-calendar-events/google-calendar-events.php on line 66
    Thread Starter Kheltdire

    (@kheltdire)

    That’s works perfectly !

    Thanks a lot <3

    Thread Starter Kheltdire

    (@kheltdire)

    I’ll re-install the WordPress on another server, more trustworthy than this one. This way i’ll be able to tell if it’s due to a lack of permissions/plugins/? of the server.

    In the same time, i’ll check the chunk of code, and see i can “force” the type of the value ??

    Hi,
    Same problem here :/

    Thread Starter Kheltdire

    (@kheltdire)

    Hi,

    I’m using a child theme for Twenty Fourteen, and even if I enable only the main theme, I still got this issue :/

    The PHP version of my server is 5.3

    Thread Starter Kheltdire

    (@kheltdire)

    Thanks for your quick reply ??

    I tried your suggestion, disabling every plugins, but the problem is still here.

    Could it be caused by the server configuration (showing not only errors, but warnings too) ? I’ll take a look and let you know if i found something

    Same problem here.
    My website is a fresh installation of wordpress with some plugins :
    > qTranslate
    > qTranslate Slug
    > WordPress SEO
    > ACF
    > Simple custom post
    Everything is up to date (wordpress + plugins).

    If i’m staying in Text Mode, i can save my content (and sometimes that’s fail, saving only one translation.).
    But if I use the HTML version everything is erased and i lost my modifications. If I write something, and switch to another tabs, everything is erased..

    Any ideas ?

    Thread Starter Kheltdire

    (@kheltdire)

    Hi, thanks for your answer ??

    Sorry for my poor explanation !

    Let’s start again :
    – I can’t active your plugin in the widget page.

    Step by step :

    1. I go to : example.com/wp-admin/widgets.php
    2. I drag and Drop your plugin in my sidebar
    3. I configure the settings (time range, …)
    4. I save.
    5. If I go check the result on the front office, nothing appears.
    6. If I refresh “example.com/wp-admin/widgets.php”, the widget “wordpress most popular” isn’t in my sidebar anymore. It is back in “Available Widgets”

    I dont’t get any error, message or whatsoever in the back office.

    – A question : If i use wpp_get_mostpopular(); in my template (instead of using the widget), does it take the settings of the plugins choosen in “example.com/options-general.php?page=wpp_admin” section Tool ? (Like “Thumbnail source”),
    Or do i need to configure this in my template too ?

    – My other problem is :
    If i set the thumbnail source to “Custom field”, i get the html class “wpp_featured” on the image (and this class is define in your code with something like wpp_{source}; if i correctly understood your code), and that is why i think that the parameter of “thumbnail source” isn’t correctly retrieve on my website ??

    PS :
    Yesterday i made some modifications on the function get_img(); (it’s not really clean sorry… :/ It’s just a temporary fix, for waiting the v2 of our website in december) and i fixed the behavior of the plugins on my website. I removed some treatments, here what it looks like now :
    https://pastebin.com/1uAMX7MZ

    Thread Starter Kheltdire

    (@kheltdire)

    Fixed it !

    It was a conflict between the slugs and the category’s names :/

    Thread Starter Kheltdire

    (@kheltdire)

    Edit :
    Ok, now the default language doesn’t work since i changed (again and again) of way of navigation ^^”
    Don’t have a clue of what i touch (i work few days with “?lang” before asking here)

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