Plugin Directory

Changeset 1943487


Ignore:
Timestamp:
09/19/2018 06:47:24 AM (8 years ago)
Author:
bibblio
Message:

Updated RCM version

Location:
bibblio-related-posts/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • bibblio-related-posts/trunk/README.txt

    r1936664 r1943487  
    3838* **Support** – A Bibblio team member is always available to assist you, no matter which plan you’re on.
    3939
    40 * **Stylish design** – The related post modules are beautifully designed to make your content stand out! Choose from over 150 module combinations to find the right layout and show off your related content perfectly. You can also customize them to match your designs manually by overriding with your own CSS
     40* **Stylish design** – The related post modules are beautifully designed to make your content stand out! Choose from over 150 module combinations to find the right layout and show off your related content perfectly. You can also customize them to match your designs manually by overriding with your own CSS.
    4141
    4242* **Tracking** – Add query strings to your content URLs to see what your users are clicking on, e.g. with Google Analytics.
     
    142142
    143143== Changelog ==
     144= 1.3.1 =
     145* Updated the RCM version
     146
    144147= 1.3.0 =
    145148* Added "author" and "date published" display options to the recommendation module
  • bibblio-related-posts/trunk/admin/class-bibblio-related-posts-admin.php

    r1936664 r1943487  
    8181        wp_enqueue_style( $this->plugin_name . '-bootstrap', '//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css', array(), '4.6.3s', 'all' );
    8282        wp_enqueue_style( $this->plugin_name . '-mudule-setting-customize', plugin_dir_url( __FILE__ ) . 'css/bibblio_module_setting_layer_customize.css', array(), '4.6.3s', 'all' );
    83         wp_enqueue_style( 'bibblio-rcm-css', '//cdn.bibblio.org/rcm/3.0/bib-related-content.css', array(), false, 'all' );
     83        wp_enqueue_style( 'bibblio-rcm-css', '//cdn.bibblio.org/rcm/3.1/bib-related-content.css', array(), false, 'all' );
    8484    }
    8585
     
    8888     */
    8989    public function enqueue_scripts() {
    90         wp_enqueue_script( 'bibblio-rcm-js', '//cdn.bibblio.org/rcm/3.0/bib-related-content.js', array(), false, true );
     90        wp_enqueue_script( 'bibblio-rcm-js', '//cdn.bibblio.org/rcm/3.1/bib-related-content.js', array(), false, true );
    9191        wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/bibblio_related_posts-admin.js', array( 'jquery', 'bibblio-rcm-js' ), $this->version, false );
    9292    }
  • bibblio-related-posts/trunk/bibblio-related-posts.php

    r1936664 r1943487  
    1111 * Plugin URI:        http://bibblio.org/
    1212 * Description:       Quickly add content recommendations to your WordPress pages.
    13  * Version:           1.3.0
     13 * Version:           1.3.1
    1414 * Author:            Bibblio
    1515 * Author URI:        http://www.bibblio.org
  • bibblio-related-posts/trunk/includes/class-bibblio-related-posts.php

    r1936664 r1943487  
    6868
    6969        $this->plugin_name  = 'bibblio_related_posts';
    70         $this->version      = '1.3.0';
     70        $this->version      = '1.3.1';
    7171        static::$admin_path = admin_url( 'admin.php?page=' . $this->plugin_name );
    7272
  • bibblio-related-posts/trunk/public/class-bibblio-related-posts-public.php

    r1936664 r1943487  
    6161
    6262        wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/bibblio_related_posts-public.css', array(), $this->version, 'all' );
    63         wp_enqueue_style( 'bibblio-rcm-css', '//cdn.bibblio.org/rcm/3.0/bib-related-content.css', array(), false, 'all' );
     63        wp_enqueue_style( 'bibblio-rcm-css', '//cdn.bibblio.org/rcm/3.1/bib-related-content.css', array(), false, 'all' );
    6464    }
    6565
     
    8181
    8282        wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/bibblio_related_posts-public.js', array( 'jquery' ), $this->version, false );
    83         wp_enqueue_script( 'bibblio-rcm-js', '//cdn.bibblio.org/rcm/3.0/bib-related-content.js', array(), false, true );
     83        wp_enqueue_script( 'bibblio-rcm-js', '//cdn.bibblio.org/rcm/3.1/bib-related-content.js', array(), false, true );
    8484    }
    8585
Note: See TracChangeset for help on using the changeset viewer.