Changeset 290112
- Timestamp:
- 09/24/2025 04:58:02 AM (2 months ago)
- Location:
- home-construction-builder/1.1.8
- Files:
-
- 6 edited
- 1 copied
-
. (copied) (copied from home-construction-builder/1.1.7)
-
inc/customizer/homepage-content.php (modified) (2 diffs)
-
inc/template-tags.php (modified) (1 diff)
-
languages/home-construction-builder.pot (modified) (5 diffs)
-
lib/custom/css/dynamic-style.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
style.css (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
home-construction-builder/1.1.8/inc/customizer/homepage-content.php
r244715 r290112 18 18 ); 19 19 20 // Show/Hide Site Logo 21 $wp_customize->add_setting('home_construction_builder_display_logo', array( 22 'default' => false, 23 'capability' => 'edit_theme_options', 24 'sanitize_callback' => 'home_construction_builder_sanitize_checkbox', 25 )); 26 $wp_customize->add_control('home_construction_builder_display_logo', array( 27 'label' => esc_html__('Enable / Disable Site Logo', 'home-construction-builder'), 28 'section' => 'title_tagline', 29 'type' => 'checkbox', 30 )); 31 32 // Show/Hide Site Title 33 $wp_customize->add_setting('home_construction_builder_display_title', array( 34 'default' => true, 35 'capability' => 'edit_theme_options', 36 'sanitize_callback' => 'home_construction_builder_sanitize_checkbox', 37 )); 38 $wp_customize->add_control('home_construction_builder_display_title', array( 39 'label' => esc_html__('Enable / Disable Site Title', 'home-construction-builder'), 40 'section' => 'title_tagline', 41 'type' => 'checkbox', 42 )); 43 44 // Show/Hide Site Tagline 20 45 $wp_customize->add_setting('home_construction_builder_display_header_text', 21 46 array( 22 'default' => $home_construction_builder_default['home_construction_builder_header_slider'],47 'default' => false, 23 48 'capability' => 'edit_theme_options', 24 49 'sanitize_callback' => 'home_construction_builder_sanitize_checkbox', … … 27 52 $wp_customize->add_control('home_construction_builder_display_header_text', 28 53 array( 29 'label' => esc_html__('Enable / Disable Tagline', 'home-construction-builder'),54 'label' => esc_html__('Enable / Disable Site Tagline', 'home-construction-builder'), 30 55 'section' => 'title_tagline', 31 56 'type' => 'checkbox', -
home-construction-builder/1.1.8/inc/template-tags.php
r268890 r290112 41 41 */ 42 42 $home_construction_builder_args = apply_filters('home_construction_builder_site_logo_args', $home_construction_builder_args, $home_construction_builder_defaults); 43 if ( has_custom_logo() ) { 44 $home_construction_builder_contents = sprintf($home_construction_builder_args['logo'], $home_construction_builder_logo, esc_html($home_construction_builder_site_title)); 45 $home_construction_builder_contents .= sprintf($home_construction_builder_args['title'], esc_url( get_home_url(null, '/') ), esc_html($home_construction_builder_site_title)); 43 44 $home_construction_builder_show_logo = get_theme_mod('home_construction_builder_display_logo', false); 45 $home_construction_builder_show_title = get_theme_mod('home_construction_builder_display_title', true); 46 47 if ( has_custom_logo() && $home_construction_builder_show_logo ) { 48 $home_construction_builder_contents .= sprintf($home_construction_builder_args['logo'], $home_construction_builder_logo, esc_html($home_construction_builder_site_title)); 46 49 $home_construction_builder_classname = $home_construction_builder_args['logo_class']; 47 } else { 48 $home_construction_builder_contents = sprintf($home_construction_builder_args['title'], esc_url( get_home_url(null, '/') ), esc_html($home_construction_builder_site_title)); 49 $home_construction_builder_classname = $home_construction_builder_args['title_class']; 50 } 50 } 51 52 if ( $home_construction_builder_show_title ) { 53 $home_construction_builder_contents .= sprintf($home_construction_builder_args['title'], esc_url(get_home_url(null, '/')), esc_html($home_construction_builder_site_title)); 54 // If logo isn't shown, fallback to title class for wrapper. 55 if ( !$home_construction_builder_show_logo ) { 56 $home_construction_builder_classname = $home_construction_builder_args['title_class']; 57 } 58 } 59 60 // If nothing is shown (logo or title both disabled), exit early 61 if ( empty($home_construction_builder_contents) ) { 62 return; 63 } 64 51 65 $home_construction_builder_wrap = $home_construction_builder_args['condition'] ? 'home_wrap' : 'single_wrap'; 52 66 // $home_construction_builder_wrap = 'home_wrap'; -
home-construction-builder/1.1.8/languages/home-construction-builder.pot
r280253 r290112 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Home Construction Builder 1.1. 5\n"5 "Project-Id-Version: Home Construction Builder 1.1.8\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/home-construction-builder\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-0 7-17T06:31:28+00:00\n"12 "POT-Creation-Date: 2025-09-16T13:25:53+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" … … 632 632 msgstr "" 633 633 634 #: inc/customizer/homepage-content.php:29 635 msgid "Enable / Disable Tagline" 636 msgstr "" 637 638 #: inc/customizer/homepage-content.php:44 634 #: inc/customizer/homepage-content.php:27 635 msgid "Enable / Disable Site Logo" 636 msgstr "" 637 638 #: inc/customizer/homepage-content.php:39 639 msgid "Enable / Disable Site Title" 640 msgstr "" 641 642 #: inc/customizer/homepage-content.php:54 643 msgid "Enable / Disable Site Tagline" 644 msgstr "" 645 646 #: inc/customizer/homepage-content.php:69 639 647 msgid "Enable Slider" 640 648 msgstr "" 641 649 642 #: inc/customizer/homepage-content.php: 59650 #: inc/customizer/homepage-content.php:84 643 651 msgid "Slider Background Image" 644 652 msgstr "" 645 653 646 #: inc/customizer/homepage-content.php: 75654 #: inc/customizer/homepage-content.php:100 647 655 msgid "Slider Short Title" 648 656 msgstr "" 649 657 650 #: inc/customizer/homepage-content.php: 90658 #: inc/customizer/homepage-content.php:115 651 659 msgid "Slider Post Left Category" 652 660 msgstr "" 653 661 654 #: inc/customizer/homepage-content.php:1 01662 #: inc/customizer/homepage-content.php:126 655 663 msgid "About Us Settings" 656 664 msgstr "" 657 665 658 #: inc/customizer/homepage-content.php:1 17666 #: inc/customizer/homepage-content.php:142 659 667 msgid "Enable About Us" 660 668 msgstr "" 661 669 662 #: inc/customizer/homepage-content.php:1 32670 #: inc/customizer/homepage-content.php:157 663 671 msgid "About Us Left Image " 664 672 msgstr "" 665 673 666 #: inc/customizer/homepage-content.php:1 48674 #: inc/customizer/homepage-content.php:173 667 675 msgid "Left Image Heading" 668 676 msgstr "" 669 677 670 #: inc/customizer/homepage-content.php:1 63678 #: inc/customizer/homepage-content.php:188 671 679 msgid "About Us Short Title" 672 680 msgstr "" 673 681 674 #: inc/customizer/homepage-content.php: 178682 #: inc/customizer/homepage-content.php:203 675 683 msgid "About Us Heading" 676 684 msgstr "" 677 685 678 #: inc/customizer/homepage-content.php: 193686 #: inc/customizer/homepage-content.php:218 679 687 msgid "About Us Content" 680 688 msgstr "" 681 689 682 #: inc/customizer/homepage-content.php:2 08690 #: inc/customizer/homepage-content.php:233 683 691 msgid "About Us Feature Image " 684 692 msgstr "" 685 693 686 #: inc/customizer/homepage-content.php:2 24694 #: inc/customizer/homepage-content.php:249 687 695 msgid "About Us Feature Heading 1" 688 696 msgstr "" 689 697 690 #: inc/customizer/homepage-content.php:2 39698 #: inc/customizer/homepage-content.php:264 691 699 msgid "About Us Feature Heading 2" 692 700 msgstr "" 693 701 694 #: inc/customizer/homepage-content.php:2 54702 #: inc/customizer/homepage-content.php:279 695 703 msgid "About Us Feature Heading 3" 696 704 msgstr "" … … 979 987 980 988 #. translators: used between list items, there is a space after the comma 981 #: inc/template-tags.php:2 76989 #: inc/template-tags.php:290 982 990 msgctxt "list item separator" 983 991 msgid ", " … … 985 993 986 994 #. translators: %s: Name of current post. Only visible to screen readers 987 #: inc/template-tags.php: 298995 #: inc/template-tags.php:312 988 996 msgid "Edit <span class=\"screen-reader-text\">%s</span>" 989 997 msgstr "" -
home-construction-builder/1.1.8/lib/custom/css/dynamic-style.php
r280253 r290112 79 79 } 80 80 81 .breadcrumbs {82 font-size: {$home_construction_builder_breadcrumb_font_size}px ;81 .breadcrumbs,.woocommerce-breadcrumb { 82 font-size: {$home_construction_builder_breadcrumb_font_size}px !important; 83 83 } 84 84 "; -
home-construction-builder/1.1.8/readme.txt
r287814 r290112 4 4 Tested up to: 6.8 5 5 Requires PHP: 7.2 6 Stable tag: 1.1. 76 Stable tag: 1.1.8 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 191 191 = 1.1.7 = 192 192 * New Tags Added. 193 194 = 1.1.8 = 195 * Added Enable / Disable Site Logo Setting. 196 * Added Enable / Disable Site Title Setting. 197 * Updated template-tags.php File Function. 198 * Done Checkout Page CSS. 199 * Updated Breadcrumb Font Size Setting. -
home-construction-builder/1.1.8/style.css
r287814 r290112 9 9 Tested up to: 6.8 10 10 Requires PHP: 7.2 11 Version: 1.1. 711 Version: 1.1.8 12 12 License: GNU General Public License v2 or later 13 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html 14 14 Text Domain: home-construction-builder 15 Tags: blog, e-commerce, portfolio, one-column, two-columns, three-columns, four-columns, right-sidebar, left-sidebar, grid-layout, full-width-template, wide-blocks, block-styles, editor-style, custom-background, custom-logo, custom-menu, custom-colors, custom-header, featured-images, flexible-header, footer-widgets, featured-image-header, post-formats, rtl-language-support, translation-ready, theme-options, threaded-comments, sticky-post15 Tags: blog, e-commerce, portfolio, one-column, two-columns, three-columns, four-columns, right-sidebar, left-sidebar, grid-layout, full-width-template, wide-blocks, block-styles, editor-style, custom-background, custom-logo, custom-menu, custom-colors, custom-header, featured-images, flexible-header, footer-widgets, featured-image-header, post-formats, rtl-language-support, translation-ready, theme-options, threaded-comments, sticky-post 16 16 */ 17 17 … … 910 910 width: 50%; 911 911 } 912 .wc-block-components-checkout-return-to-cart-button{ 913 background: var(--global-color); 914 color: #fff !important; 915 text-decoration: none !important; 916 border-radius: 10px; 917 border: none !important; 918 padding: 10px; 919 border: 2px solid transparent; 920 } 912 921 .wp-block-woocommerce-cart .wc-block-cart__submit-button:hover{ 913 922 border: 2px solid var(--global-color); … … 3533 3542 display: none; 3534 3543 } 3535 . entry-header-1{3536 margin- top: 3rem;3537 padding- top: 3rem;3544 .single .post-thumbnail { 3545 margin-bottom: 2rem; 3546 padding-bottom: 2rem; 3538 3547 } 3539 3548 @media (max-width: 991px) {
Note: See TracChangeset
for help on using the changeset viewer.