Changeset 299149
- Timestamp:
- 11/19/2025 08:46:40 AM (5 days ago)
- Location:
- transact/1.1.84
- Files:
-
- 4 deleted
- 7 edited
- 1 copied
-
. (copied) (copied from transact/1.1.79)
-
assets/css (deleted)
-
assets/images/demo-productive-transact-500x150.png (deleted)
-
assets/images/demo-productive-transact-500x150.psd (deleted)
-
assets/js (deleted)
-
functions.php (modified) (3 diffs)
-
languages/transact.pot (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
screenshot.png (modified) (previous)
-
style.css (modified) (1 diff)
-
template-parts/part-page-single-post.php (modified) (2 diffs)
-
template-parts/part-page.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
transact/1.1.84/functions.php
r294347 r299149 16 16 global $productive_transact_theme_version; 17 17 18 wp_enqueue_style( 'transact-supplied-css', get_theme_file_uri() . '/assets/css/child-theme.css', array(), $productive_transact_theme_version );19 wp_style_add_data( 'transact-supplied-css', 'rtl', 'replace' );20 21 18 wp_enqueue_style( 'productive_child_theme_wp_css_style', get_stylesheet_uri(), array(), $productive_transact_theme_version ); 22 19 wp_style_add_data( 'productive_child_theme_wp_css_style', 'rtl', 'replace' ); 23 20 24 wp_enqueue_script( 'transact-js', get_theme_file_uri() . '/assets/js/child-theme.js', array(), $productive_transact_theme_version, true );25 26 21 } 27 22 if ( !is_admin() ) { … … 81 76 82 77 add_theme_support( 'editor-styles' ); 83 add_editor_style( './assets/css/style-editor-child.css' );84 78 load_child_theme_textdomain( 'productive-ecommerce', get_stylesheet_directory() . '/languages' ); 85 79 } … … 96 90 } 97 91 98 do_action('productive_global_render_home_section_featured'); 92 if( productive_global_is_woocommerce_active() ) { 93 do_action('productive_global_render_home_section_featured'); 99 94 100 do_action('productive_global_display_homepage_element_section');95 do_action('productive_global_display_homepage_element_section'); 101 96 102 do_action('productive_global_render_home_section_latest'); 97 do_action('productive_global_render_home_section_latest'); 98 } 103 99 104 100 productive_ecommerce_render_content_archive_item_blog( 1, 0, 0, 1, 1 ); -
transact/1.1.84/languages/transact.pot
r295812 r299149 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Transact 1.1. 79\n"5 "Project-Id-Version: Transact 1.1.84\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/transact\n" 7 "POT-Creation-Date: 2025-11- 02 08:41:22+00:00\n"7 "POT-Creation-Date: 2025-11-19 08:45:56+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=UTF-8\n" … … 13 13 "Language-Team: LANGUAGE <LL@li.org>\n" 14 14 15 #: functions.php:1 1115 #: functions.php:107 16 16 msgid "Theme Dashboard" 17 17 msgstr "" … … 33 33 msgstr "" 34 34 35 #: template-parts/part-page-single-post.php:9 735 #: template-parts/part-page-single-post.php:98 36 36 msgid "Share on: " 37 37 msgstr "" -
transact/1.1.84/readme.txt
r295812 r299149 2 2 Contributors: productiveminds.com 3 3 Tested up to: 6.8 4 Stable Tag: 1.1. 794 Stable Tag: 1.1.84 5 5 License: GNU General Public License v2 or later 6 6 License URI: www.gnu.org/licenses/gpl-2.0.html … … 49 49 === Changelog === 50 50 51 = v1.1. 79, released on 2025-11-1st=51 = v1.1.84, released on 2025-11-19th = 52 52 - (Fix): Bugs resolved. 53 53 -
transact/1.1.84/style.css
r295812 r299149 9 9 Tested up to: 6.8 10 10 Requires PHP: 7.0 11 Version: 1.1. 7911 Version: 1.1.84 12 12 License: GNU General Public License v2 or later 13 13 License URI: www.gnu.org/licenses/gpl-2.0.html -
transact/1.1.84/template-parts/part-page-single-post.php
r294347 r299149 19 19 20 20 <?php if( !PRODUCTIVE_ECOMMERCE_CUSTOMIZER_show_top_banner || 'hide_top_banner' == $productive_ecommerce_show_top_banner ) { ?> 21 <h1><?php esc_html( the_title()); ?></h1>21 <h1><?php the_title(); ?></h1> 22 22 <?php } ?> 23 23 … … 95 95 96 96 <?php 97 $share_on = esc_html__('Share on: ', 'transact'); 98 productive_global_render_std_social_media_share( $share_on ); 97 if( function_exists( 'productive_global_render_social_media_share_icons' ) ) { 98 $share_on = esc_html__('Share on: ', 'transact'); 99 productive_global_render_std_social_media_share( $share_on ); 100 } 99 101 ?> 100 102 -
transact/1.1.84/template-parts/part-page.php
r290157 r299149 21 21 <section class="page-content-body productive-blockable-element"> 22 22 <?php if( !$hide_page_title && ( !PRODUCTIVE_ECOMMERCE_CUSTOMIZER_show_top_banner || 'hide_top_banner' == $productive_ecommerce_show_top_banner ) ) { ?> 23 <h1><?php esc_html( the_title()); ?></h1>23 <h1><?php the_title(); ?></h1> 24 24 <?php } ?> 25 25
Note: See TracChangeset
for help on using the changeset viewer.