Changeset 1943487
- Timestamp:
- 09/19/2018 06:47:24 AM (8 years ago)
- Location:
- bibblio-related-posts/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (2 diffs)
-
admin/class-bibblio-related-posts-admin.php (modified) (2 diffs)
-
bibblio-related-posts.php (modified) (1 diff)
-
includes/class-bibblio-related-posts.php (modified) (1 diff)
-
public/class-bibblio-related-posts-public.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bibblio-related-posts/trunk/README.txt
r1936664 r1943487 38 38 * **Support** – A Bibblio team member is always available to assist you, no matter which plan you’re on. 39 39 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. 41 41 42 42 * **Tracking** – Add query strings to your content URLs to see what your users are clicking on, e.g. with Google Analytics. … … 142 142 143 143 == Changelog == 144 = 1.3.1 = 145 * Updated the RCM version 146 144 147 = 1.3.0 = 145 148 * Added "author" and "date published" display options to the recommendation module -
bibblio-related-posts/trunk/admin/class-bibblio-related-posts-admin.php
r1936664 r1943487 81 81 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' ); 82 82 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' ); 84 84 } 85 85 … … 88 88 */ 89 89 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 ); 91 91 wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/bibblio_related_posts-admin.js', array( 'jquery', 'bibblio-rcm-js' ), $this->version, false ); 92 92 } -
bibblio-related-posts/trunk/bibblio-related-posts.php
r1936664 r1943487 11 11 * Plugin URI: http://bibblio.org/ 12 12 * Description: Quickly add content recommendations to your WordPress pages. 13 * Version: 1.3. 013 * Version: 1.3.1 14 14 * Author: Bibblio 15 15 * Author URI: http://www.bibblio.org -
bibblio-related-posts/trunk/includes/class-bibblio-related-posts.php
r1936664 r1943487 68 68 69 69 $this->plugin_name = 'bibblio_related_posts'; 70 $this->version = '1.3. 0';70 $this->version = '1.3.1'; 71 71 static::$admin_path = admin_url( 'admin.php?page=' . $this->plugin_name ); 72 72 -
bibblio-related-posts/trunk/public/class-bibblio-related-posts-public.php
r1936664 r1943487 61 61 62 62 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' ); 64 64 } 65 65 … … 81 81 82 82 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 ); 84 84 } 85 85
Note: See TracChangeset
for help on using the changeset viewer.