/** * total functions and definitions * * @package total */ if (!defined('TOTAL_VERSION')) { $total_get_theme = wp_get_theme(); $total_version = $total_get_theme->Version; define('TOTAL_VERSION', $total_version); } if (!function_exists('total_setup')) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function total_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on total, use a find and replace * to change 'total' to the name of your theme in all the template files */ load_theme_textdomain('total', get_template_directory() . '/languages'); // Add default posts and comments RSS feed links to head. add_theme_support('automatic-feed-links'); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support('title-tag'); /* * Enable support for Post Thumbnails on posts and pages. * * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support('post-thumbnails'); add_image_size('total-portfolio-thumb', 400, 400, true); add_image_size('total-team-thumb', 350, 420, true); add_image_size('total-blog-thumb', 400, 280, true); add_image_size('total-thumb', 100, 100, true); add_image_size('total-blog-header', 720, 360, true); // This theme uses wp_nav_menu() in one location. register_nav_menus(array( 'primary' => esc_html__('Primary Menu', 'total'), )); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support('html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', )); // Set up the WordPress core custom background feature. add_theme_support('custom-background', apply_filters('total_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ))); add_theme_support('custom-logo', array( 'height' => 62, 'width' => 300, 'flex-height' => true, 'flex-width' => true, 'header-text' => array('.ht-site-title', '.ht-site-description'), )); add_theme_support('woocommerce'); add_theme_support('wc-product-gallery-zoom'); add_theme_support('wc-product-gallery-lightbox'); add_theme_support('wc-product-gallery-slider'); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style(array('css/editor-style.css', total_fonts_url())); } endif; // total_setup add_action('after_setup_theme', 'total_setup'); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function total_content_width() { $GLOBALS['content_width'] = apply_filters('total_content_width', 640); } add_action('after_setup_theme', 'total_content_width', 0); /** * Enables the Excerpt meta box in Page edit screen. */ function total_add_excerpt_support_for_pages() { add_post_type_support('page', 'excerpt'); } add_action('init', 'total_add_excerpt_support_for_pages'); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function total_widgets_init() { register_sidebar(array( 'name' => esc_html__('Right Sidebar', 'total'), 'id' => 'total-right-sidebar', 'description' => esc_html__('Add widgets here to appear in your sidebar.', 'total'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', )); register_sidebar(array( 'name' => esc_html__('Left Sidebar', 'total'), 'id' => 'total-left-sidebar', 'description' => esc_html__('Add widgets here to appear in your sidebar.', 'total'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', )); register_sidebar(array( 'name' => esc_html__('Shop Sidebar', 'total'), 'id' => 'total-shop-sidebar', 'description' => esc_html__('Add widgets here to appear in your sidebar of shop page.', 'total'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', )); register_sidebar(array( 'name' => esc_html__('Footer One', 'total'), 'id' => 'total-footer1', 'description' => esc_html__('Add widgets here to appear in your Footer.', 'total'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', )); register_sidebar(array( 'name' => esc_html__('Footer Two', 'total'), 'id' => 'total-footer2', 'description' => esc_html__('Add widgets here to appear in your Footer.', 'total'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', )); register_sidebar(array( 'name' => esc_html__('Footer Three', 'total'), 'id' => 'total-footer3', 'description' => esc_html__('Add widgets here to appear in your Footer.', 'total'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', )); register_sidebar(array( 'name' => esc_html__('Footer Four', 'total'), 'id' => 'total-footer4', 'description' => esc_html__('Add widgets here to appear in your Footer.', 'total'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', )); } add_action('widgets_init', 'total_widgets_init'); if (!function_exists('total_fonts_url')) : /** * Register Google fonts for Total. * * @since Total 1.0 * * @return string Google fonts URL for the theme. */ function total_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* * Translators: If there are characters in your language that are not supported * by Open Sans, translate this to 'off'. Do not translate into your own language. */ if ('off' !== _x('on', 'Pontano Sans font: on or off', 'total')) { $fonts[] = 'Pontano Sans'; } /* * Translators: If there are characters in your language that are not supported * by Inconsolata, translate this to 'off'. Do not translate into your own language. */ if ('off' !== _x('on', 'Oswald font: on or off', 'total')) { $fonts[] = 'Oswald:400,700,300'; } /* * Translators: To add an additional character subset specific to your language, * translate this to 'greek', 'cyrillic', 'devanagari' or 'vietnamese'. Do not translate into your own language. */ $subset = _x('no-subset', 'Add new subset (greek, cyrillic, devanagari, vietnamese)', 'total'); if ('cyrillic' == $subset) { $subsets .= ',cyrillic,cyrillic-ext'; } elseif ('greek' == $subset) { $subsets .= ',greek,greek-ext'; } elseif ('devanagari' == $subset) { $subsets .= ',devanagari'; } elseif ('vietnamese' == $subset) { $subsets .= ',vietnamese'; } if ($fonts) { $fonts_url = add_query_arg(array( 'family' => urlencode(implode('|', $fonts)), 'subset' => urlencode($subsets), ), '//fonts.googleapis.com/css'); } return esc_url_raw($fonts_url); } endif; /** * Enqueue scripts and styles. */ function total_scripts() { wp_enqueue_script('jquery-nav', get_template_directory_uri() . '/js/jquery.nav.js', array('jquery'), TOTAL_VERSION, true); wp_enqueue_script('owl-carousel', get_template_directory_uri() . '/js/owl.carousel.js', array('jquery'), TOTAL_VERSION, true); wp_enqueue_script('isotope-pkgd', get_template_directory_uri() . '/js/isotope.pkgd.js', array('jquery', 'imagesloaded'), TOTAL_VERSION, true); wp_enqueue_script('nivo-lightbox', get_template_directory_uri() . '/js/nivo-lightbox.js', array('jquery'), TOTAL_VERSION, true); wp_enqueue_script('superfish', get_template_directory_uri() . '/js/superfish.js', array('jquery'), TOTAL_VERSION, true); wp_enqueue_script('jquery-stellar', get_template_directory_uri() . '/js/jquery.stellar.js', array('imagesloaded'), TOTAL_VERSION, false); wp_enqueue_script('odometer', get_template_directory_uri() . '/js/odometer.js', array('jquery'), TOTAL_VERSION, true); wp_enqueue_script('waypoint', get_template_directory_uri() . '/js/waypoint.js', array('jquery'), TOTAL_VERSION, true); wp_enqueue_script('total-custom', get_template_directory_uri() . '/js/total-custom.js', array('jquery'), TOTAL_VERSION, true); wp_localize_script('total-custom', 'total_localize', array('template_path' => get_template_directory_uri())); wp_enqueue_style('total-style', get_stylesheet_uri(), array('animate', 'font-awesome', 'owl-carousel', 'nivo-lightbox'), TOTAL_VERSION); wp_enqueue_style('total-fonts', total_fonts_url(), array(), NULL); wp_enqueue_style('animate', get_template_directory_uri() . '/css/animate.css', array(), TOTAL_VERSION); wp_enqueue_style('font-awesome', get_template_directory_uri() . '/css/font-awesome.css', array(), TOTAL_VERSION); wp_enqueue_style('owl-carousel', get_template_directory_uri() . '/css/owl.carousel.css', array(), TOTAL_VERSION); wp_enqueue_style('nivo-lightbox', get_template_directory_uri() . '/css/nivo-lightbox.css', array(), TOTAL_VERSION); wp_add_inline_style('total-style', total_dymanic_styles()); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'total_scripts'); /** * Enqueue admin style */ function total_admin_scripts() { wp_enqueue_style('total-admin-style', get_template_directory_uri() . '/inc/css/admin-style.css', array(), TOTAL_VERSION); wp_enqueue_media(); wp_enqueue_script('total-admin-scripts', get_template_directory_uri() . '/inc/js/admin-scripts.js', array('jquery'), TOTAL_VERSION, true); } add_action('admin_enqueue_scripts', 'total_admin_scripts'); add_action('elementor/editor/before_enqueue_scripts', 'total_admin_scripts'); if (!function_exists('wp_body_open')) { function wp_body_open() { do_action('wp_body_open'); } } /** * Breadcrumb */ require get_template_directory() . '/inc/breadcrumbs.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * TGMPA */ require get_template_directory() . '/inc/class-tgm-plugin-activation.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/total-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Metabox additions. */ require get_template_directory() . '/inc/total-metabox.php'; /** * FontAwesome Array */ require get_template_directory() . '/inc/font-awesome-list.php'; /** * Welcome Page. */ require get_template_directory() . '/welcome/welcome.php'; /** * Dynamic Styles additions. */ require get_template_directory() . '/inc/style.php'; /** * Widgets additions. */ require get_template_directory() . '/inc/widgets/widget-fields.php'; require get_template_directory() . '/inc/widgets/widget-contact-info.php'; require get_template_directory() . '/inc/widgets/widget-personal-info.php'; require get_template_directory() . '/inc/widgets/widget-latest-post.php'; <!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <script type='text/javascript'>console.log('PixelYourSite Free version 7.1.4');</script> <style id="wp-img-auto-sizes-contain-inline-css"> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id="wp-emoji-styles-inline-css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id="wp-block-library-inline-css"> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */ </style> <style id="classic-theme-styles-inline-css"> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel='stylesheet' id='proven-css' href='https://dynastymall.com/wp-content/plugins/tt-proven/public/css/proven-public.css?ver=1.0.0' media='all' /> <link rel='stylesheet' id='dashicons-css' href='https://dynastymall.com/wp-includes/css/dashicons.min.css?ver=7.0.2' media='all' /> <link rel='stylesheet' id='woocommerce-layout-css' href='https://dynastymall.com/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=4.0.4' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='https://dynastymall.com/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=4.0.4' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='https://dynastymall.com/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=4.0.4' media='all' /> <style id="woocommerce-inline-inline-css"> .woocommerce form .form-row .required { visibility: visible; } /*# sourceURL=woocommerce-inline-inline-css */ </style> <script id="jquery-core-js" src="https://dynastymall.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> <script id="jquery-migrate-js" src="https://dynastymall.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> <script id="proven-js" src="https://dynastymall.com/wp-content/plugins/tt-proven/public/js/proven-public.js?ver=1.0.0"></script> <script id="jquery-blockui-js" src="https://dynastymall.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.70"></script> <script id="wc-add-to-cart-js-extra"> var wc_add_to_cart_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https://dynastymall.com","is_cart":"","cart_redirect_after_add":"no"}; //# sourceURL=wc-add-to-cart-js-extra </script> <script id="wc-add-to-cart-js" src="https://dynastymall.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=4.0.4"></script> <script id="vc_woocommerce-add-to-cart-js-js" src="https://dynastymall.com/wp-content/plugins/js_composer/assets/js/vendors/woocommerce-add-to-cart.js?ver=6.1"></script> <link rel="https://api.w.org/" href="https://dynastymall.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://dynastymall.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 7.0.2" /> <meta name="generator" content="WooCommerce 4.0.4" /> <!-- Facebook Pixel Code --> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '130470045492505'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=130470045492505&ev=PageView&noscript=1" /></noscript> <!-- End Facebook Pixel Code --> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> <meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> <script type='text/javascript'>console.warn('PixelYourSite: no pixel configured.');</script> <style id="wp-custom-css"> .woocommerce .woocommerce-error, .woocommerce .woocommerce-info, .woocommerce .woocommerce-message { display: none; } #ht-masthead { display: none; } .breadcrumb-trail, .woocommerce .woocommerce-breadcrumb { display: none; } </style> <noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript> </head> <body class="home blog wp-theme-total theme-total woocommerce-no-js wpb-js-composer js-comp-ver-6.1 vc_responsive elementor-default elementor-kit-23"> <div id="ht-page"> <a class="skip-link screen-reader-text" href="#ht-content">Skip to content</a> <header id="ht-masthead" class="ht-site-header"> <div class="ht-container ht-clearfix"> <div id="ht-site-branding"> <h1 class="ht-site-title"><a href="https://dynastymall.com/" rel="home">Dynasty Mall</a></h1> <p class="ht-site-description"><a href="https://dynastymall.com/" rel="home">MY ECOM SHOP</a></p> </div><!-- .site-branding --> <a href="#" class="toggle-bar"><span></span></a> <nav id="ht-site-navigation" class="ht-main-navigation"> <div class="ht-clearfix"><ul> <li class="page_item page-item-22903"><a href="https://dynastymall.com/490-blender/">490 BLENDER</a></li> <li class="page_item page-item-20919"><a href="https://dynastymall.com/baby-bullet/">BABY BULLET</a></li> <li class="page_item page-item-20946"><a href="https://dynastymall.com/baby-bullet-thank-you-page/">Baby bullet thank you page</a></li> <li class="page_item page-item-186"><a href="https://dynastymall.com/blender-thank-you/">BLENDER THANK YOU</a></li> <li class="page_item page-item-22058"><a href="https://dynastymall.com/breakfast-maker-thank-you/">breakfast maker thank you</a></li> <li class="page_item page-item-20535"><a href="https://dynastymall.com/car-pump/">CAR PUMP</a></li> <li class="page_item page-item-20595"><a href="https://dynastymall.com/car-pump-thank-you/">CAR PUMP THANK YOU</a></li> <li class="page_item page-item-951"><a href="https://dynastymall.com/cart/">Cart</a></li> <li class="page_item page-item-13"><a href="https://dynastymall.com/checkout/">Checkout</a></li> <li class="page_item page-item-20417"><a href="https://dynastymall.com/colapsible-kettle/">COLLAPSIBLE KETTLE</a></li> <li class="page_item page-item-26"><a href="https://dynastymall.com/commercial-blender/">Commercial Blender</a></li> <li class="page_item page-item-21417"><a href="https://dynastymall.com/commercial-skewer/">Commercial Skewer</a></li> <li class="page_item page-item-941"><a href="https://dynastymall.com/communication-preferences/">Communication preferences</a></li> <li class="page_item page-item-20195"><a href="https://dynastymall.com/communication-preferences-2/">Communication preferences</a></li> <li class="page_item page-item-22303"><a href="https://dynastymall.com/dissini-non-stick-pan/">dissini non stick pan</a></li> <li class="page_item page-item-22338"><a href="https://dynastymall.com/dissini-nonstick-thank-you/">dissini nonstick thank you</a></li> <li class="page_item page-item-20347"><a href="https://dynastymall.com/dry-grain-dispenser/">DRY GRAIN DISPENSER</a></li> <li class="page_item page-item-22756"><a href="https://dynastymall.com/dynasty-bakery/">dynasty bakery</a></li> <li class="page_item page-item-20757"><a href="https://dynastymall.com/electric-lunch-box/">ELECTRIC LUNCH BOX</a></li> <li class="page_item page-item-20778"><a href="https://dynastymall.com/electric-lunch-box-thank-you/">ELECTRIC LUNCH BOX THANK YOU</a></li> <li class="page_item page-item-20484"><a href="https://dynastymall.com/foldable-thank-you-page/">FOLDABLE THANK YOU PAGE</a></li> <li class="page_item page-item-20392"><a href="https://dynastymall.com/grain-dispenser-thank-you-page/">GRAIN DISPENSER THANK YOU PAGE</a></li> <li class="page_item page-item-21333"><a href="https://dynastymall.com/juice-extractor-thank-you/">Juice Extractor Thank you</a></li> <li class="page_item page-item-325"><a href="https://dynastymall.com/juice-maker/">JUICE MAKER</a></li> <li class="page_item page-item-20967"><a href="https://dynastymall.com/knife-sharpner/">knife sharpner</a></li> <li class="page_item page-item-20996"><a href="https://dynastymall.com/knife-thank-you/">knife thank you</a></li> <li class="page_item page-item-20020"><a href="https://dynastymall.com/visa-ebook-template/">Landing Page Template</a></li> <li class="page_item page-item-634"><a href="https://dynastymall.com/magic-mesh/">MAGIC MESH</a></li> <li class="page_item page-item-23353"><a href="https://dynastymall.com/magic-toilet-cleaner/">magic toilet cleaner</a></li> <li class="page_item page-item-22854"><a href="https://dynastymall.com/manual-juice-press/">MANUAL JUICE PRESS</a></li> <li class="page_item page-item-638"><a href="https://dynastymall.com/mesh-thank-you/">MESH THANK YOU</a></li> <li class="page_item page-item-22191"><a href="https://dynastymall.com/mini-neck-fan-landing-page/">mini neck fan landing page</a></li> <li class="page_item page-item-22149"><a href="https://dynastymall.com/mini-rechargeable-neck-fan/">mini rechargeable neck fan</a></li> <li class="page_item page-item-22947"><a href="https://dynastymall.com/modern-calendar/">modern calendar</a></li> <li class="page_item page-item-23046"><a href="https://dynastymall.com/modern-calendar-thank-you/">modern calendar thank you</a></li> <li class="page_item page-item-23463"><a href="https://dynastymall.com/modern-trap-door/">modern trap door</a></li> <li class="page_item page-item-21040"><a href="https://dynastymall.com/mosquito-bat-thank-you/">mosquito bat thank you</a></li> <li class="page_item page-item-21003"><a href="https://dynastymall.com/mosquito-killing-lump/">mosquito killing lump</a></li> <li class="page_item page-item-22024"><a href="https://dynastymall.com/multifunctional-breakfast-making-machine/">Multifunctional Breakfast Making Machine</a></li> <li class="page_item page-item-21919"><a href="https://dynastymall.com/multifunctional-electric-cooker/">multifunctional electric cooker</a></li> <li class="page_item page-item-21952"><a href="https://dynastymall.com/multifunctional-electric-cooker-thank-you/">multifunctional electric cooker thank you</a></li> <li class="page_item page-item-20240"><a href="https://dynastymall.com/multifunctional-laptop-table/">MULTIFUNCTIONAL LAPTOP TABLE</a></li> <li class="page_item page-item-22366"><a href="https://dynastymall.com/multifunctional-pressure-cooker/">multifunctional pressure cooker</a></li> <li class="page_item page-item-20261"><a href="https://dynastymall.com/multifunctional-spray-mop/">MULTIFUNCTIONAL SPRAY MOP</a></li> <li class="page_item page-item-19249"><a href="https://dynastymall.com/my-account-2/">My Account</a></li> <li class="page_item page-item-801"><a href="https://dynastymall.com/platinum-electric-frying-pan/">PLATINUM ELECTRIC FRYING PAN</a></li> <li class="page_item page-item-889"><a href="https://dynastymall.com/platinum-thank-you-page/">PLATINUM THANK YOU PAGE</a></li> <li class="page_item page-item-22986"><a href="https://dynastymall.com/portable-hand-juicer/">portable hand juicer</a></li> <li class="page_item page-item-23021"><a href="https://dynastymall.com/portable-hand-juicer-thank-you/">portable hand juicer thank you</a></li> <li class="page_item page-item-454"><a href="https://dynastymall.com/portable-table/">PORTABLE TABLE</a></li> <li class="page_item page-item-23112"><a href="https://dynastymall.com/rice-cooker/">RICE COOKER</a></li> <li class="page_item page-item-20878"><a href="https://dynastymall.com/save-penguin-thank-you/">SAVE PENGUIN THANK YOU</a></li> <li class="page_item page-item-20824"><a href="https://dynastymall.com/save-the-penguin/">SAVE THE PENGUIN</a></li> <li class="page_item page-item-21159"><a href="https://dynastymall.com/screen-magnifier/">Screen Magnifier</a></li> <li class="page_item page-item-21186"><a href="https://dynastymall.com/screen-magnifier-thank-you/">Screen Magnifier thank you</a></li> <li class="page_item page-item-20136"><a href="https://dynastymall.com/shop/">Shop</a></li> <li class="page_item page-item-22610"><a href="https://dynastymall.com/silver-crest-commercial-blender/">silver crest commercial blender</a></li> <li class="page_item page-item-551"><a href="https://dynastymall.com/sinbo-blender/">SINBO BLENDER</a></li> <li class="page_item page-item-23245"><a href="https://dynastymall.com/skin-disease-ointment/">skin disease ointment</a></li> <li class="page_item page-item-21045"><a href="https://dynastymall.com/sokany-deep-fryer/">sokany deep fryer</a></li> <li class="page_item page-item-21092"><a href="https://dynastymall.com/sokany-deep-fryer-thank-you/">sokany deep fryer thank you</a></li> <li class="page_item page-item-22411"><a href="https://dynastymall.com/sokany-electric-hot-pot/">sokany electric hot pot</a></li> <li class="page_item page-item-22684"><a href="https://dynastymall.com/sokany-electric-hot-pot-thank-you/">sokany electric hot pot thank you</a></li> <li class="page_item page-item-21207"><a href="https://dynastymall.com/sokany-juice-extractor/">Sokany Juice Extractor</a></li> <li class="page_item page-item-498"><a href="https://dynastymall.com/sonaky-juice-maker/">SONAKY JUICE MAKER</a></li> <li class="page_item page-item-20323"><a href="https://dynastymall.com/spray-mob-thank-you/">SPRAY MOB THANK YOU</a></li> <li class="page_item page-item-303"><a href="https://dynastymall.com/table-thank-you/">TABLE THANK YOU</a></li> <li class="page_item page-item-20623"><a href="https://dynastymall.com/the-magic-tape/">THE MAGIC TAPE THANK YOU</a></li> <li class="page_item page-item-20617"><a href="https://dynastymall.com/the-multifunctional-magic-tape/">THE MULTIFUNCTIONAL MAGIC TAPE</a></li> <li class="page_item page-item-23169"><a href="https://dynastymall.com/victor-gel-insecticide/">victor Gel insecticide</a></li> <li class="page_item page-item-21535"><a href="https://dynastymall.com/waterproof-invincible-paste/">Waterproof Invincible Paste</a></li> <li class="page_item page-item-21588"><a href="https://dynastymall.com/waterproof-thank-you/">WATERPROOF THANK YOU</a></li> </ul></div> </nav><!-- #ht-site-navigation --> </div> </header><!-- #ht-masthead --> <div id="ht-content" class="ht-site-content ht-clearfix"> <div class="ht-container"> <div id="primary" class="content-area"> <main id="main" class="site-main"> <article id="post-24083" class="total-hentry post-24083 post type-post status-publish format-standard hentry category-casino"> <div class="entry-meta ht-post-info">