Make WordPress Themes

Changeset 299149


Ignore:
Timestamp:
11/19/2025 08:46:40 AM (5 days ago)
Author:
themedropbox
Message:

New version of Transact - 1.1.84

Location:
transact/1.1.84
Files:
4 deleted
7 edited
1 copied

Legend:

Unmodified
Added
Removed
  • transact/1.1.84/functions.php

    r294347 r299149  
    1616    global $productive_transact_theme_version;
    1717   
    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    
    2118    wp_enqueue_style( 'productive_child_theme_wp_css_style', get_stylesheet_uri(), array(), $productive_transact_theme_version );
    2219    wp_style_add_data( 'productive_child_theme_wp_css_style', 'rtl', 'replace' );
    2320   
    24     wp_enqueue_script( 'transact-js', get_theme_file_uri() . '/assets/js/child-theme.js', array(), $productive_transact_theme_version, true );
    25 
    2621}
    2722if ( !is_admin() ) {
     
    8176   
    8277    add_theme_support( 'editor-styles' );
    83     add_editor_style( './assets/css/style-editor-child.css' );
    8478    load_child_theme_textdomain( 'productive-ecommerce', get_stylesheet_directory() . '/languages' );
    8579}
     
    9690        }
    9791
    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');
    9994
    100         do_action('productive_global_display_homepage_element_section');
     95            do_action('productive_global_display_homepage_element_section');
    10196
    102         do_action('productive_global_render_home_section_latest');
     97            do_action('productive_global_render_home_section_latest');
     98        }
    10399
    104100        productive_ecommerce_render_content_archive_item_blog( 1, 0, 0, 1, 1 );
  • transact/1.1.84/languages/transact.pot

    r295812 r299149  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Transact 1.1.79\n"
     5"Project-Id-Version: Transact 1.1.84\n"
    66"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"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
     
    1313"Language-Team: LANGUAGE <LL@li.org>\n"
    1414
    15 #: functions.php:111
     15#: functions.php:107
    1616msgid "Theme Dashboard"
    1717msgstr ""
     
    3333msgstr ""
    3434
    35 #: template-parts/part-page-single-post.php:97
     35#: template-parts/part-page-single-post.php:98
    3636msgid "Share on: "
    3737msgstr ""
  • transact/1.1.84/readme.txt

    r295812 r299149  
    22Contributors: productiveminds.com
    33Tested up to: 6.8
    4 Stable Tag: 1.1.79
     4Stable Tag: 1.1.84
    55License: GNU General Public License v2 or later
    66License URI: www.gnu.org/licenses/gpl-2.0.html
     
    4949=== Changelog ===
    5050
    51 = v1.1.79, released on 2025-11-1st =
     51= v1.1.84, released on 2025-11-19th =
    5252- (Fix): Bugs resolved.
    5353
  • transact/1.1.84/style.css

    r295812 r299149  
    99Tested up to: 6.8
    1010Requires PHP: 7.0
    11 Version: 1.1.79
     11Version: 1.1.84
    1212License: GNU General Public License v2 or later
    1313License URI: www.gnu.org/licenses/gpl-2.0.html
  • transact/1.1.84/template-parts/part-page-single-post.php

    r294347 r299149  
    1919       
    2020        <?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>
    2222        <?php } ?>
    2323           
     
    9595   
    9696    <?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        }
    99101    ?>
    100102   
  • transact/1.1.84/template-parts/part-page.php

    r290157 r299149  
    2121    <section class="page-content-body productive-blockable-element">
    2222        <?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>
    2424        <?php } ?>
    2525
Note: See TracChangeset for help on using the changeset viewer.