/** * Orchid Store functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Orchid_Store */ $current_theme = wp_get_theme( 'orchid-store' ); if ( ! defined( 'ORCHID_STORE_VERSION' ) ) { define( 'ORCHID_STORE_VERSION', $current_theme->get( 'Version' ) ); } if ( ! function_exists( 'orchid_store_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 orchid_store_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on Orchid Store, use a find and replace * to change 'orchid-store' to the name of your theme in all the template files. */ load_theme_textdomain( 'orchid-store', 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 https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); add_image_size( 'orchid-store-thumbnail-extra-large', 800, 600, true ); add_image_size( 'orchid-store-thumbnail-large', 800, 450, true ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'menu-1' => esc_html__( 'Primary Menu', 'orchid-store' ), 'menu-2' => esc_html__( 'Secondary Menu', 'orchid-store' ), 'menu-3' => esc_html__( 'Top Header Menu', 'orchid-store' ), ) ); /* * 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( 'orchid_store_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 70, 'flex-width' => true, 'flex-height' => true, ) ); /** * Remove block widget support in WordPress version 5.8 & later. * * @link https://make.wordpress.org/core/2021/06/29/block-based-widgets-editor-in-wordpress-5-8/ */ remove_theme_support( 'widgets-block-editor' ); } add_action( 'after_setup_theme', 'orchid_store_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 orchid_store_content_width() { // This variable is intended to be overruled from themes. // Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}. // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound $GLOBALS['content_width'] = apply_filters( 'orchid_store_content_width', 640 ); } add_action( 'after_setup_theme', 'orchid_store_content_width', 0 ); /** * Enqueue scripts and styles. */ function orchid_store_scripts() { wp_enqueue_style( 'orchid-store-style', get_stylesheet_uri(), array(), ORCHID_STORE_VERSION, 'all' ); wp_enqueue_style( 'orchid-store-fonts', orchid_store_lite_fonts_url(), array(), ORCHID_STORE_VERSION, 'all' ); wp_enqueue_style( 'orchid-store-boxicons', get_template_directory_uri() . '/assets/fonts/boxicons/boxicons.css', array(), ORCHID_STORE_VERSION, 'all' ); wp_enqueue_style( 'orchid-store-fontawesome', get_template_directory_uri() . '/assets/fonts/fontawesome/fontawesome.css', array(), ORCHID_STORE_VERSION, 'all' ); if ( is_rtl() ) { wp_enqueue_style( 'orchid-store-main-style-rtl', get_template_directory_uri() . '/assets/dist/css/main-style-rtl.css', array(), ORCHID_STORE_VERSION, 'all' ); wp_add_inline_style( 'orchid-store-main-style-rtl', orchid_store_dynamic_style() ); } else { wp_enqueue_style( 'orchid-store-main-style', get_template_directory_uri() . '/assets/dist/css/main-style.css', array(), ORCHID_STORE_VERSION, 'all' ); wp_add_inline_style( 'orchid-store-main-style', orchid_store_dynamic_style() ); } wp_register_script( 'orchid-store-bundle', get_template_directory_uri() . '/assets/dist/js/bundle.min.js', array( 'jquery' ), ORCHID_STORE_VERSION, true ); $script_obj = array( 'ajax_url' => esc_url( admin_url( 'admin-ajax.php' ) ), 'nonce' => wp_create_nonce( 'orchid_store_ajax_nonce' ), 'homeUrl' => esc_url( home_url() ), 'isUserLoggedIn' => is_user_logged_in(), 'isCartMessagesEnabled' => orchid_store_get_option( 'enable_cart_messages' ), ); $script_obj['scroll_top'] = orchid_store_get_option( 'display_scroll_top_button' ); if ( class_exists( 'WooCommerce' ) ) { if ( get_theme_mod( 'orchid_store_field_product_added_to_cart_message', esc_html__( 'Product successfully added to cart!', 'orchid-store' ) ) ) { $script_obj['added_to_cart_message'] = get_theme_mod( 'orchid_store_field_product_added_to_cart_message', esc_html__( 'Product successfully added to cart!', 'orchid-store' ) ); } if ( get_theme_mod( 'orchid_store_field_product_removed_from_cart_message', esc_html__( 'Product has been removed from your cart!', 'orchid-store' ) ) ) { $script_obj['removed_from_cart_message'] = get_theme_mod( 'orchid_store_field_product_removed_from_cart_message', esc_html__( 'Product has been removed from your cart!', 'orchid-store' ) ); } if ( get_theme_mod( 'orchid_store_field_cart_update_message', esc_html__( 'Cart items has been updated successfully!', 'orchid-store' ) ) ) { $script_obj['cart_updated_message'] = get_theme_mod( 'orchid_store_field_cart_update_message', esc_html__( 'Cart items has been updated successfully!', 'orchid-store' ) ); } if ( get_theme_mod( 'orchid_store_field_product_cols_in_mobile', 1 ) ) { $script_obj['product_cols_on_mobile'] = get_theme_mod( 'orchid_store_field_product_cols_in_mobile', 1 ); } if ( get_theme_mod( 'orchid_store_field_display_plus_minus_btns', true ) ) { $script_obj['displayPlusMinusBtns'] = get_theme_mod( 'orchid_store_field_display_plus_minus_btns', true ); } if ( get_theme_mod( 'orchid_store_field_cart_display', 'default' ) ) { $script_obj['cartDisplay'] = ( class_exists( 'Addonify_Floating_Cart' ) ) ? apply_filters( 'orchid_store_cart_display_filter', get_theme_mod( 'orchid_store_field_cart_display', 'default' ) ) : 'default'; } if ( class_exists( 'Addonify_Wishlist' ) ) { $script_obj['addToWishlistText'] = get_option( 'addonify_wishlist_btn_label', 'Add to wishlist' ); $script_obj['addedToWishlistText'] = get_option( 'addonify_wishlist_btn_label_when_added_to_wishlist', 'Added to wishlist' ); $script_obj['alreadyInWishlistText'] = get_option( 'addonify_wishlist_btn_label_if_added_to_wishlist', 'Already in wishlist' ); } } wp_localize_script( 'orchid-store-bundle', 'orchid_store_obj', $script_obj ); wp_enqueue_script( 'orchid-store-bundle' ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'orchid_store_scripts' ); /** * Enqueue scripts and styles for admin. */ function orchid_store_admin_enqueue() { wp_enqueue_script( 'media-upload' ); wp_enqueue_media(); wp_enqueue_style( 'orchid-store-admin-style', get_template_directory_uri() . '/admin/css/admin-style.css', array(), ORCHID_STORE_VERSION, 'all' ); wp_enqueue_script( 'orchid-store-admin-script', get_template_directory_uri() . '/admin/js/admin-script.js', array( 'jquery' ), ORCHID_STORE_VERSION, true ); } add_action( 'admin_enqueue_scripts', 'orchid_store_admin_enqueue' ); add_action( 'wp_ajax_wp_ajax_install_plugin', 'wp_ajax_install_plugin' ); /** * Activates AFC plugin. * * @since 1.0.0 */ function orchid_store_activate_plugin() { $return_data = array( 'success' => false, 'message' => '', ); if ( ! current_user_can( 'manage_options' ) ) { $return_data['message'] = esc_html__( 'User can not activate plugins.', 'orchid-store' ); wp_send_json( $return_data ); } if ( isset( $_POST['_ajax_nonce'] ) && ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['_ajax_nonce'] ) ), 'updates' ) ) { $return_data['message'] = esc_html__( 'Invalid security token.', 'orchid-store' ); wp_send_json( $return_data ); } $activation = activate_plugin( WP_PLUGIN_DIR . '/addonify-floating-cart/addonify-floating-cart.php' ); if ( ! is_wp_error( $activation ) ) { $return_data['success'] = true; $return_data['message'] = esc_html__( 'The plugin is activated successfully.', 'orchid-store' ); } else { $return_data['message'] = $activation->get_error_message(); } wp_send_json( $return_data ); } add_action( 'wp_ajax_orchid_store_activate_plugin', 'orchid_store_activate_plugin' ); if ( defined( 'ELEMENTOR_VERSION' ) ) { add_action( 'elementor/editor/before_enqueue_scripts', 'orchid_store_admin_enqueue' ); } /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/template-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/customizer/customizer.php'; /** * Load WooCommerce compatibility file. */ if ( class_exists( 'WooCommerce' ) ) { require get_template_directory() . '/inc/woocommerce.php'; require get_template_directory() . '/inc/woocommerce-hooks.php'; } /** * Load breadcrumb trails. */ require get_template_directory() . '/third-party/class-orchid-store-breadcrumb-trail.php'; /** * Load TGM plugin activation. */ require get_template_directory() . '/third-party/class-tgm-plugin-activation.php'; /** * Load plugin recommendations. */ require get_template_directory() . '/inc/plugin-recommendation.php'; /** * Load custom hooks necessary for theme. */ require get_template_directory() . '/inc/custom-hooks.php'; /** * Load custom hooks necessary for theme. */ require get_template_directory() . '/inc/udp/init.php'; /** * Load function that enhance theme functionality. */ require get_template_directory() . '/inc/theme-functions.php'; /** * Load option choices. */ require get_template_directory() . '/inc/option-choices.php'; /** * Load widgets and widget areas. */ require get_template_directory() . '/widget/widgets-init.php'; /** * Load custom fields. */ require get_template_directory() . '/inc/class-orchid-store-custom-fields.php'; /** * Load theme dependecies */ require get_template_directory() . '/vendor/autoload.php'; /** * Adds welcome notice to admin dashboard. * * @since 1.5.8. */ require get_template_directory() . '/admin/welcome-notice/class-orchid-store-theme-welcome-notice.php'; add_action( 'init', function () { new Orchid_Store_Theme_Welcome_Notice( 'Orchid Store', admin_url( 'admin.php?page=orchid-store' ), array( 'themebeez-toolkit/themebeez-toolkit.php' => 'https://downloads.wordpress.org/plugin/themebeez-toolkit.zip', 'woocommerce/woocommerce.php' => 'https://downloads.wordpress.org/plugin/woocommerce.latest-stable.zip', ) ); } ); <!doctype html> <html lang="en-US"> <head> <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6276201336442945" crossorigin="anonymous"></script> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /> <link rel="alternate" type="application/rss+xml" title="Graphic Sell Nepal » FN : 4130 Janamat Party Comments Feed" href="https://graphicssellnepal.com/?feed=rss2&p=13488" /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://graphicssellnepal.com/index.php?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2Fgraphicssellnepal.com%2F%3Fproduct%3Dfn-4130-janamat-party" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://graphicssellnepal.com/index.php?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2Fgraphicssellnepal.com%2F%3Fproduct%3Dfn-4130-janamat-party&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/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' type='text/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' type='text/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)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.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{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.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-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-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/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='edd-blocks-css' href='https://graphicssellnepal.com/wp-content/plugins/easy-digital-downloads/includes/blocks/assets/css/edd-blocks.css?ver=3.6.1.1' type='text/css' media='all' /> <link rel='stylesheet' id='photoswipe-css' href='https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/css/photoswipe/photoswipe.min.css?ver=10.3.7' type='text/css' media='all' /> <link rel='stylesheet' id='photoswipe-default-skin-css' href='https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.min.css?ver=10.3.7' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce-layout-css' href='https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=10.3.7' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=10.3.7' type='text/css' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=10.3.7' type='text/css' media='all' /> <style id='woocommerce-inline-inline-css' type='text/css'> .woocommerce form .form-row .required { visibility: visible; } /*# sourceURL=woocommerce-inline-inline-css */ </style> <link rel='stylesheet' id='edd-styles-css' href='https://graphicssellnepal.com/wp-content/plugins/easy-digital-downloads/assets/css/edd.min.css?ver=3.6.1.1' type='text/css' media='all' /> <link rel='stylesheet' id='brands-styles-css' href='https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/css/brands.css?ver=10.3.7' type='text/css' media='all' /> <script type="text/javascript" src="https://graphicssellnepal.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://graphicssellnepal.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.10.3.7" id="wc-jquery-blockui-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" id="wc-add-to-cart-js-extra"> /* <![CDATA[ */ 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://graphicssellnepal.com/?page_id=9","is_cart":"","cart_redirect_after_add":"yes"}; //# sourceURL=wc-add-to-cart-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=10.3.7" id="wc-add-to-cart-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.min.js?ver=1.7.21-wc.10.3.7" id="wc-zoom-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.min.js?ver=2.7.2-wc.10.3.7" id="wc-flexslider-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.min.js?ver=4.1.1-wc.10.3.7" id="wc-photoswipe-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.min.js?ver=4.1.1-wc.10.3.7" id="wc-photoswipe-ui-default-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" id="wc-single-product-js-extra"> /* <![CDATA[ */ var wc_single_product_params = {"i18n_required_rating_text":"Please select a rating","i18n_rating_options":["1 of 5 stars","2 of 5 stars","3 of 5 stars","4 of 5 stars","5 of 5 stars"],"i18n_product_gallery_trigger_text":"View full-screen image gallery","review_rating_required":"yes","flexslider":{"rtl":false,"animation":"slide","smoothHeight":true,"directionNav":false,"controlNav":"thumbnails","slideshow":false,"animationSpeed":500,"animationLoop":false,"allowOneSlide":false},"zoom_enabled":"1","zoom_options":[],"photoswipe_enabled":"1","photoswipe_options":{"shareEl":false,"closeOnScroll":false,"history":false,"hideAnimationDuration":0,"showAnimationDuration":0},"flexslider_enabled":"1"}; //# sourceURL=wc-single-product-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/js/frontend/single-product.min.js?ver=10.3.7" id="wc-single-product-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.10.3.7" id="wc-js-cookie-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" id="woocommerce-js-extra"> /* <![CDATA[ */ var woocommerce_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_password_show":"Show password","i18n_password_hide":"Hide password"}; //# sourceURL=woocommerce-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://graphicssellnepal.com/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=10.3.7" id="woocommerce-js" defer="defer" data-wp-strategy="defer"></script> <!-- Google tag (gtag.js) snippet added by Site Kit --> <!-- Google Analytics snippet added by Site Kit --> <script type="text/javascript" src="https://www.googletagmanager.com/gtag/js?id=GT-5R7RKZKK" id="google_gtagjs-js" async></script> <script type="text/javascript" id="google_gtagjs-js-after"> /* <![CDATA[ */ window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);} gtag("set","linker",{"domains":["graphicssellnepal.com"]}); gtag("js", new Date()); gtag("set", "developer_id.dZTNiMT", true); gtag("config", "GT-5R7RKZKK"); //# sourceURL=google_gtagjs-js-after /* ]]> */ </script> <link rel="https://api.w.org/" href="https://graphicssellnepal.com/index.php?rest_route=/" /><link rel="alternate" title="JSON" type="application/json" href="https://graphicssellnepal.com/index.php?rest_route=/wp/v2/product/13488" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://graphicssellnepal.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <meta name="generator" content="WooCommerce 10.3.7" /> <link rel="canonical" href="https://graphicssellnepal.com/?product=fn-4130-janamat-party" /> <link rel='shortlink' href='https://graphicssellnepal.com/?p=13488' /> <meta name="generator" content="Site Kit by Google 1.171.0" /><meta name="generator" content="Easy Digital Downloads v3.6.1.1" /> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> <meta name="google-site-verification" content="c7ILk5iSZnbY4HHKnFWs-5YsbNYwNB_AU7i79A1NRY8"> <!-- Google AdSense meta tags added by Site Kit --> <meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"> <meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"> <!-- End Google AdSense meta tags added by Site Kit --> <!-- Google AdSense snippet added by Site Kit --> <script type="text/javascript" async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6276201336442945&host=ca-host-pub-2644536267352236" crossorigin="anonymous"></script> <!-- End Google AdSense snippet added by Site Kit --> <style type="text/css" id="wp-custom-css"> .cart, .single-product .cart { display: none !important; } /* Hide Add to Cart button on single product pages */ .single_add_to_cart_button { display: none !important; } /* Hide Quantity input on single product pages */ .quantity { display: none !important; } /* Hide Add to Cart button on shop/category pages */ .add_to_cart_button { display: none !important; } /* Optional: Hide price if you want a full catalog look */ /* .price { display: none !important; } */ /* ===== Stylish Bold Menu (CSS only) ===== */ :root{ --nav-bg: rgba(10, 12, 18, 0.72); --nav-border: rgba(255,255,255,0.10); --text: rgba(255,255,255,0.92); --muted: rgba(255,255,255,0.66); --accent: #6d7cff; --accent2: #21d4fd; --shadow: 0 18px 50px rgba(0,0,0,0.35); --radius: 18px; } .topbar{ position: sticky; top: 0; z-index: 9999; padding: 14px 16px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); } .nav{ max-width: 1200px; margin: 0 auto; background: var(--nav-bg); border: 1px solid var(--nav-border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transform: translateZ(0); animation: navDrop 520ms cubic-bezier(.2,.9,.2,1) both; } @keyframes navDrop{ from{ opacity: 0; transform: translateY(-10px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } } .nav__inner{ display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 14px; } /* Brand */ .nav__brand{ display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; letter-spacing: 0.2px; font-weight: 800; font-size: 16px; } .nav__brand-badge{ width: 34px; height: 34px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent2)); box-shadow: 0 10px 25px rgba(109,124,255,0.28); } /* Links */ .nav__links{ display: flex; align-items: center; gap: 6px; list-style: none; padding: 0; margin: 0; } .nav__link{ position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 12px; text-decoration: none; color: var(--muted); font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; font-weight: 800; /* bold */ font-size: 14px; letter-spacing: 0.2px; transition: transform 220ms ease, background 220ms ease, color 220ms ease; outline: none; } .nav__link::after{ content: ""; position: absolute; left: 12px; right: 12px; bottom: 7px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent2)); transform: scaleX(0); transform-origin: left; transition: transform 260ms cubic-bezier(.2,.9,.2,1); opacity: .95; } .nav__link:hover{ color: var(--text); background: rgba(255,255,255,0.06); transform: translateY(-1px); } .nav__link:hover::after{ transform: scaleX(1); } .nav__link:focus-visible{ box-shadow: 0 0 0 3px rgba(109,124,255,0.35); background: rgba(255,255,255,0.08); color: var(--text); } /* Active link */ .nav__link.is-active{ color: var(--text); background: rgba(255,255,255,0.08); } .nav__link.is-active::after{ transform: scaleX(1); } /* Right area */ .nav__right{ display: flex; align-items: center; gap: 10px; } /* CTA button */ .nav__cta{ display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 14px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.14); color: #0b0f18; text-decoration: none; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; font-weight: 900; letter-spacing: 0.2px; background: linear-gradient(135deg, var(--accent), var(--accent2)); box-shadow: 0 14px 30px rgba(33,212,253,0.18); transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease; } .nav__cta:hover{ transform: translateY(-2px); filter: brightness(1.03); box-shadow: 0 18px 38px rgba(109,124,255,0.22); } .nav__cta:active{ transform: translateY(0px) scale(0.99); } .nav__cta:focus-visible{ box-shadow: 0 0 0 3px rgba(33,212,253,0.35), 0 18px 38px rgba(109,124,255,0.22); outline: none; } /* Mobile toggle (optional) */ .nav__toggle{ display: none; width: 44px; height: 44px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: var(--text); cursor: pointer; transition: transform 200ms ease, background 200ms ease; } .nav__toggle:hover{ background: rgba(255,255,255,0.10); transform: translateY(-1px); } .nav__toggle:active{ transform: translateY(0); } /* Responsive */ @media (max-width: 760px){ .nav__toggle{ display: inline-flex; align-items: center; justify-content: center; } .nav__inner{ flex-wrap: wrap; } .nav__links{ width: 100%; display: none; flex-direction: column; gap: 8px; padding: 10px; margin-top: 6px; border-top: 1px solid rgba(255,255,255,0.10); background: rgba(0,0,0,0.10); } .nav--open .nav__links{ display: flex; } .nav__link{ width: 100%; justify-content: space-between; padding: 12px 12px; } .nav__link::after{ left: 12px; right: 12px; bottom: 8px; } } /* Hide price everywhere (shop + product page) */ .woocommerce div.product p.price, .woocommerce div.product span.price, .woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price, .woocommerce-Price-amount, .price { display: none !important; } /* Hide price everywhere (shop + product page) */ .woocommerce div.product p.price, .woocommerce div.product span.price, .woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price, .woocommerce-Price-amount, .price { display: none !important; } .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .et_pb_slider .et-pb-slider-arrows a { width: 56px !important; height: 56px !important; border-radius: 999px !important; background: #0B57D0 !important; border: 1px solid rgba(255,255,255,.22) !important; box-shadow: 0 16px 32px rgba(2,6,23,.22), 0 6px 14px rgba(2,6,23,.12) !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; position: absolute !important; top: 50% !important; transform: translateY(-50%) !important; padding: 0 !important; margin: 0 !important; outline: none !important; cursor: pointer !important; z-index: 99 !important; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease !important; } .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav .owl-prev, .et_pb_slider .et-pb-slider-arrows a.et-pb-arrow-prev { left: -22px !important; } .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav .owl-next, .et_pb_slider .et-pb-slider-arrows a.et-pb-arrow-next { right: -22px !important; } .owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-next:hover, .et_pb_slider .et-pb-slider-arrows a:hover { background: #0A4CC0 !important; box-shadow: 0 22px 42px rgba(2,6,23,.26), 0 10px 18px rgba(11,87,208,.25) !important; transform: translateY(-50%) scale(1.05) !important; } .owl-carousel .owl-nav button.owl-prev span, .owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav .owl-prev span, .owl-carousel .owl-nav .owl-next span { color: #fff !important; font-size: 22px !important; font-weight: 900 !important; line-height: 1 !important; display: inline-block !important; transform: translateY(-1px) !important; } .owl-carousel .owl-nav { position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; height: 100% !important; pointer-events: none !important; z-index: 99 !important; } .owl-carousel .owl-nav button, .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next { pointer-events: auto !important; } .owl-carousel .owl-nav button.disabled, .owl-carousel .owl-nav .disabled { opacity: .35 !important; cursor: not-allowed !important; box-shadow: none !important; } @media (max-width: 768px) { .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav .owl-prev { left: 8px !important; } .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav .owl-next { right: 8px !important; } } </style> </head> <body class="wp-singular product-template-default single single-product postid-13488 wp-custom-logo wp-theme-orchid-store theme-orchid-store woocommerce woocommerce-page woocommerce-no-js edd-js-none"> <style>.edd-js-none .edd-has-js, .edd-js .edd-no-js, body.edd-js input.edd-no-js { display: none; }</style> <script>/* <![CDATA[ */(function(){var c = document.body.classList;c.remove('edd-js-none');c.add('edd-js');})();/* ]]> */</script> <div id="page" class="site __os-page-wrap__"> <a class="skip-link screen-reader-text" href="#content"> Skip to content </a> <div id="content" class="site-content"> <div class="inner-page-wrap default-page-wrap default-page-s1"> <div class="__os-container__"> <div class="os-row"> <div class="