Changeset 2165786
- Timestamp:
- 09/30/2019 01:12:59 PM (6 years ago)
- Location:
- bibblio-related-posts/trunk
- Files:
-
- 7 edited
-
README.txt (modified) (2 diffs)
-
admin/class-bibblio-related-posts-admin.php (modified) (2 diffs)
-
admin/css/bibblio_module_setting_layer_customize.css (modified) (2 diffs)
-
admin/partials/templates/parts/module-setting-layer.php (modified) (1 diff)
-
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
r2145693 r2165786 4 4 Tags: related posts, related links, easy related posts, audience development, content recommendation, posts relacionados, entradas relacionadas, Ähnliche Beiträge, articles similaires, articoli correlati, gerelateerde posts 5 5 Requires at least: 4.0 6 Tested up to: 5. 06 Tested up to: 5.2 7 7 Requires PHP: 5.6 8 8 Stable tag: trunk … … 152 152 153 153 == Changelog == 154 = 1.3.7 = 155 * Updated the RCM version 156 * Improvements to the module builder interface 157 154 158 = 1.3.6 = 155 159 * Updated module builder to include new RCM v4.5 features -
bibblio-related-posts/trunk/admin/class-bibblio-related-posts-admin.php
r2145693 r2165786 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/4. 5/bib-related-content.min.css', array(), false, 'all' );83 wp_enqueue_style( 'bibblio-rcm-css', '//cdn.bibblio.org/rcm/4.6/bib-related-content.min.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/4. 5/bib-related-content.min.js', array(), false, true );90 wp_enqueue_script( 'bibblio-rcm-js', '//cdn.bibblio.org/rcm/4.6/bib-related-content.min.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/admin/css/bibblio_module_setting_layer_customize.css
r2145693 r2165786 744 744 } 745 745 .module-showcase-selects.selects-horiz select { 746 margin: 6px 0 0 8px;746 margin: 3px 0 0 8px; 747 747 } 748 748 … … 900 900 .module-showcase-selects select { 901 901 font-size: 13px; 902 margin: 0 0 6px 8px; 903 height: 20px; 902 margin: 0 0 4px 8px; 904 903 float: left; 904 } 905 906 .module-showcase-text label { 907 display: block; 908 padding: 0 0 0 8px; 905 909 } 906 910 -
bibblio-related-posts/trunk/admin/partials/templates/parts/module-setting-layer.php
r2145693 r2165786 198 198 <div class="module-showcase-checkboxes"> 199 199 <div class="module-showcase-control-column"> 200 <div class="module-showcase-button module-showcase-arrangement-about" id="bib--about" title=" Invert the tile text to white"><span class="module-showcase-button-icon"><span></span></span><span class="module-showcase-button-label">Explanatory link beneath module</span></div>200 <div class="module-showcase-button module-showcase-arrangement-about" id="bib--about" title="Reassure your audience of the authenticity of these recommendations"><span class="module-showcase-button-icon"><span></span></span><span class="module-showcase-button-label">Explanatory link beneath module</span></div> 201 201 </div> 202 202 </div> -
bibblio-related-posts/trunk/bibblio-related-posts.php
r2145701 r2165786 11 11 * Plugin URI: https://www.bibblio.org/ 12 12 * Description: Quickly add content recommendations to your WordPress posts. 13 * Version: 1.3. 613 * Version: 1.3.7 14 14 * Author: Bibblio 15 15 * Author URI: https://www.bibblio.org -
bibblio-related-posts/trunk/includes/class-bibblio-related-posts.php
r2145701 r2165786 68 68 69 69 $this->plugin_name = 'bibblio_related_posts'; 70 $this->version = '1.3. 6';70 $this->version = '1.3.7'; 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
r2145693 r2165786 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/4. 5/bib-related-content.css', array(), false, 'all' );63 wp_enqueue_style( 'bibblio-rcm-css', '//cdn.bibblio.org/rcm/4.6/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/4. 5/bib-related-content.js', array(), false, true );83 wp_enqueue_script( 'bibblio-rcm-js', '//cdn.bibblio.org/rcm/4.6/bib-related-content.js', array(), false, true ); 84 84 } 85 85
Note: See TracChangeset
for help on using the changeset viewer.