// إضافة هذا الكود لملف functions.php في الثيم // إنشاء Custom Taxonomies للغرف والخامات function create_coccaro_taxonomies() { // تصنيف الغرف register_taxonomy( 'room_category', 'product', array( 'label' => 'Room Categories', 'labels' => array( 'name' => 'Room Categories', 'singular_name' => 'Room Category', 'menu_name' => 'Rooms', 'all_items' => 'All Rooms', 'edit_item' => 'Edit Room', 'view_item' => 'View Room', 'update_item' => 'Update Room', 'add_new_item' => 'Add New Room', 'new_item_name' => 'New Room Name', 'search_items' => 'Search Rooms', 'not_found' => 'No rooms found' ), 'public' => true, 'hierarchical' => true, 'show_ui' => true, 'show_admin_column' => true, 'query_var' => true, 'rewrite' => array('slug' => 'room'), 'show_in_rest' => true ) ); // تصنيف الخامات register_taxonomy( 'material_category', 'product', array( 'label' => 'Material Categories', 'labels' => array( 'name' => 'Material Categories', 'singular_name' => 'Material Category', 'menu_name' => 'Materials', 'all_items' => 'All Materials', 'edit_item' => 'Edit Material', 'view_item' => 'View Material', 'update_item' => 'Update Material', 'add_new_item' => 'Add New Material', 'new_item_name' => 'New Material Name', 'search_items' => 'Search Materials', 'not_found' => 'No materials found' ), 'public' => true, 'hierarchical' => true, 'show_ui' => true, 'show_admin_column' => true, 'query_var' => true, 'rewrite' => array('slug' => 'material'), 'show_in_rest' => true ) ); } add_action('init', 'create_coccaro_taxonomies'); // دالة إنشاء جميع الفئات function create_all_coccaro_categories() { echo "
"; echo "

🏠 إنشاء فئات Coccaro Home

"; // ====================== // 1. فئات المنتجات (Product Categories) // ====================== echo "

📦 إنشاء فئات المنتجات...

"; $product_categories = array( array( 'name' => 'Cushions & Pillows', 'slug' => 'cushions-pillows', 'description' => 'Comfortable and stylish cushions and pillows for your home' ), array( 'name' => 'Throws & Blankets', 'slug' => 'throws-blankets', 'description' => 'Cozy throws and blankets for warmth and style' ), array( 'name' => 'Rugs', 'slug' => 'rugs', 'description' => 'Beautiful rugs and carpets for every room' ), array( 'name' => 'Candles', 'slug' => 'candles', 'description' => 'Scented and decorative candles for ambiance' ), array( 'name' => 'Pots & Planters', 'slug' => 'pots-planters', 'description' => 'Stylish pots and planters for your plants' ), array( 'name' => 'Runners & Placemats', 'slug' => 'runners-placemats', 'description' => 'Table runners and placemats for elegant dining' ), array( 'name' => 'Trays & Servers', 'slug' => 'trays-servers', 'description' => 'Serving trays and food servers for entertaining' ), array( 'name' => 'Mugs', 'slug' => 'mugs', 'description' => 'Coffee mugs and cups for your daily beverages' ), array( 'name' => 'Vases', 'slug' => 'vases', 'description' => 'Decorative vases for flowers and home decor' ), array( 'name' => 'Wall Decor', 'slug' => 'wall-decor', 'description' => 'Wall art, frames and decorative wall items' ), array( 'name' => 'Artificial Plants', 'slug' => 'artificial-plants', 'description' => 'Beautiful artificial plants and greenery' ), array( 'name' => 'Tissue Boxes', 'slug' => 'tissue-boxes', 'description' => 'Decorative tissue box holders and covers' ), array( 'name' => 'Storage & Baskets', 'slug' => 'storage-baskets', 'description' => 'Storage solutions and decorative baskets' ), array( 'name' => 'Poufs', 'slug' => 'poufs', 'description' => 'Ottoman poufs and floor seating options' ), array( 'name' => 'Stools', 'slug' => 'stools', 'description' => 'Bar stools and counter seating' ), array( 'name' => 'Benches', 'slug' => 'benches', 'description' => 'Seating benches for home and garden' ), array( 'name' => 'Swings', 'slug' => 'swings', 'description' => 'Hanging swings and outdoor seating' ), array( 'name' => 'Umbrellas', 'slug' => 'umbrellas', 'description' => 'Garden and patio umbrellas for shade' ) ); foreach ($product_categories as $category) { $existing = term_exists($category['slug'], 'product_cat'); if (!$existing) { $result = wp_insert_term( $category['name'], 'product_cat', array( 'slug' => $category['slug'], 'description' => $category['description'] ) ); if (!is_wp_error($result)) { echo "✅ تم إنشاء فئة المنتج: " . $category['name'] . "
"; } else { echo "❌ خطأ في إنشاء: " . $category['name'] . " - " . $result->get_error_message() . "
"; } } else { echo "⚠️ فئة المنتج موجودة: " . $category['name'] . "
"; } } // ====================== // 2. فئات الغرف (Room Categories) // ====================== echo "

🏠 إنشاء فئات الغرف...

"; $room_categories = array( array( 'name' => 'Living Room', 'slug' => 'living-room', 'description' => 'Living room decor, furniture and accessories' ), array( 'name' => 'Bedroom', 'slug' => 'bedroom', 'description' => 'Bedroom accessories, decor and comfort items' ), array( 'name' => 'Dining Room', 'slug' => 'dining-room', 'description' => 'Dining room essentials and table accessories' ), array( 'name' => 'Kitchen', 'slug' => 'kitchen', 'description' => 'Kitchen accessories, storage and decor items' ), array( 'name' => 'Bathroom', 'slug' => 'bathroom', 'description' => 'Bathroom accessories and organizational items' ), array( 'name' => 'Outdoor', 'slug' => 'outdoor', 'description' => 'Garden, patio and outdoor living accessories' ) ); foreach ($room_categories as $room) { $existing = term_exists($room['slug'], 'room_category'); if (!$existing) { $result = wp_insert_term( $room['name'], 'room_category', array( 'slug' => $room['slug'], 'description' => $room['description'] ) ); if (!is_wp_error($result)) { echo "✅ تم إنشاء فئة الغرفة: " . $room['name'] . "
"; } else { echo "❌ خطأ في إنشاء: " . $room['name'] . " - " . $result->get_error_message() . "
"; } } else { echo "⚠️ فئة الغرفة موجودة: " . $room['name'] . "
"; } } // ====================== // 3. فئات الخامات (Material Categories) // ====================== echo "

🧵 إنشاء فئات الخامات...

"; $material_categories = array( array( 'name' => 'Halfa', 'slug' => 'halfa', 'description' => 'Natural halfa grass products and accessories' ), array( 'name' => 'Wood', 'slug' => 'wood', 'description' => 'Wooden furniture and decorative items' ), array( 'name' => 'Pottery', 'slug' => 'pottery', 'description' => 'Ceramic and clay pottery items' ), array( 'name' => 'Decoupage', 'slug' => 'decoupage', 'description' => 'Decoupage art and decorative pieces' ), array( 'name' => 'Cotton', 'slug' => 'cotton', 'description' => 'Cotton textiles and soft furnishings' ), array( 'name' => 'Macrame', 'slug' => 'macrame', 'description' => 'Macrame wall hangings and decorative items' ), array( 'name' => 'Jute', 'slug' => 'jute', 'description' => 'Natural jute fiber products and accessories' ), array( 'name' => 'Fabric', 'slug' => 'fabric', 'description' => 'Various fabric textiles and upholstery' ), array( 'name' => 'Leather', 'slug' => 'leather', 'description' => 'Premium leather goods and accessories' ), array( 'name' => 'Plastic', 'slug' => 'plastic', 'description' => 'Durable plastic and polymer products' ) ); foreach ($material_categories as $material) { $existing = term_exists($material['slug'], 'material_category'); if (!$existing) { $result = wp_insert_term( $material['name'], 'material_category', array( 'slug' => $material['slug'], 'description' => $material['description'] ) ); if (!is_wp_error($result)) { echo "✅ تم إنشاء فئة الخامة: " . $material['name'] . "
"; } else { echo "❌ خطأ في إنشاء: " . $material['name'] . " - " . $result->get_error_message() . "
"; } } else { echo "⚠️ فئة الخامة موجودة: " . $material['name'] . "
"; } } // ====================== // ملخص العملية // ====================== echo "
"; echo "

🎉 تم الانتهاء من العملية!

"; echo "

✅ 18 فئة منتج

"; echo "

🏠 6 فئات غرف

"; echo "

🧵 10 فئات خامات

"; echo "

المجموع: 34 فئة

"; echo "

يمكنك الآن زيارة لوحة التحكم لرؤية جميع الفئات المنشأة.

"; echo "
"; echo "
"; // تحديث Rewrite Rules flush_rewrite_rules(); } // تشغيل الدالة عند زيارة الرابط مع البارامتر if (isset($_GET['create_coccaro_categories']) && $_GET['create_coccaro_categories'] == '1' && current_user_can('manage_options')) { add_action('wp_loaded', 'create_all_coccaro_categories'); } ?> tufted tassel decor cushion with filler buy the best now – elegant, coccarohome
Free shipping for orders over 5,000 EGP Installment with ValU Installment with Souhoola
Free shipping for orders over 5,000 EGP Installment with ValU Installment with Souhoola
Free shipping for orders over 5,000 EGP Installment with ValU Installment with Souhoola
Free shipping for orders over 5,000 EGP Installment with ValU Installment with Souhoola
  • Home
  • Shop
  • Gift Cards
  • About us
  • Blog
  • Contact us
Login / Register
Search
Wishlist
1 item 117 SAR
Menu
1 item 117 SAR
“Macrame Round Cushion” has been added to your cart. View cart
tufted tassel cushion with filler
Click to enlarge
Home Cushions Tufted Tassel Decor Cushion with filler
embroidered halfa basket
Embroidered Halfa basket 52 SAR – 59 SAR
Back to products
boho tassel cushion
Boho Geometric Pattern Tassel Cushion with filler 68 SAR – 78 SAR

Tufted Tassel Decor Cushion with filler

0 reviews

68 SAR – 78 SAR

Enhance your home with the stylish tufted tassel decor cushion. This cushion with filler adds elegance and comfort to any space. Perfect for sofas, chairs, or beds.

Earn up to 8,000 points.
Clear
Compare
Add to wishlist
SKU: N/A Category: Cushions
Share:
  • Description
  • Special shipping requirements
Description

Tufted Tassel Decor cushion cover. tufted tassel decor cushion with filler.

Sizes available
30*50cm
45*45 cm
Add a touch of sophistication to your home decor with the tufted tassel decor cushion with filler. Made from high-quality fabric, this cushion features a beautiful tufted design, complemented by playful tassels that bring texture and style to your space. Whether placed on your sofa, armchair, or bed, it provides both comfort and a decorative accent to any room. The included filler ensures a plush, soft feel for maximum relaxation. Elevate your living room, bedroom, or any corner of your home with this stylish and functional cushion, available at an affordable price.

Bring texture and comfort to your home with this tufted tassel decor cushion with filler. Crafted from soft, durable fabric, this cushion features stylish tufted patterns with playful tassels on the corners, adding a cozy yet chic touch to any space. Perfect for sofas, beds, or as a decorative accent for your living room.

Design & features

  • Available in neutral tones that match a variety of home décors.

  • Playful tassels at each corner add a unique flair.

  • Comes with a high-quality filler for comfort and durability.

Perfect for

  • Sofas, beds, armchairs, or as a decorative throw pillow.

  • A quick way to refresh your living room or bedroom.

Care
Machine washable for easy maintenance.

Ethical production
Crafted by artisans, supporting sustainable practices and fair wages.

style and comfort combined in one chic cushion.

Special shipping requirements
Size

30*50, 45*45

Rated 0 out of 5
0 reviews
Rated 5 out of 5
0
Rated 4 out of 5
0
Rated 3 out of 5
0
Rated 2 out of 5
0
Rated 1 out of 5
0

Reviews

Clear filters

There are no reviews yet.

Be the first to review “Tufted Tassel Decor Cushion with filler” Cancel reply

Your email address will not be published. Required fields are marked *

Related products

fashionable cushion with filler
Compare
Quick view
Add to wishlist
Earn up to 8,000 points.Select options

Fashionable Cushion with filler

Cushions
Rated 5 out of 5
68 SAR – 78 SAR
colorful striped print cushion cover.
Compare
Quick view
Add to wishlist
Purchase & earn 5,500 points!Add to cart

Colorful Striped Print Cushion Cover With Filler

Cushions
Rated 5 out of 5
54 SAR
Compare
Quick view
Add to wishlist
Purchase & earn 12,000 points!Add to cart

Macrame Round Cushion

Cushions, Macrame
117 SAR
geometric embroidered cushion
Compare
Quick view
Add to wishlist
Earn up to 6,000 points.Select options

Geometric Embroidered cushion with filler

Cushions
Rated 5 out of 5
57 SAR – 59 SAR
macrame classic cushion.
Compare
Quick view
Add to wishlist
Purchase & earn 7,000 points!Add to cart

Macrame classic cushion

Cushions, Macrame
Rated 5 out of 5
68 SAR
Plain white cushion filler
Compare
Quick view
Add to wishlist
Earn up to 1,500 points.Select options

plain white decorative cushion filler

Cushions, Home Accessories
Rated 5 out of 5
15 SAR
    SEE OUR COLLECTION
    More on Instagram
    2 0
    2 0
    2 0
    1 0
    3 0
    1 0
    2 0
    4 0
    3 0
    1 0
    5 0
    4 0

    Company

    • Contact us
    • About us

    Legal

    • Terms and Conditions
    • Privacy Policy
    Copyrights Reserved 2024 –  Managed by C.M. Artificial intelligence
    payments
    • Menu
    • Categories
    • Home Accessories
    • Bathrooms
    • Candles
    • Cushions
    • Halfa
    • Kitchen
    • Macrame
    • Offers
    • Plants
    • Pots
    • Pottery
    • Rugs
    • Runners
    • Home
    • Shop
    • Gift Cards
    • About us
    • Contact us
    • Wishlist
    • Compare
    • Login / Register
    Shopping cart
    Close
    Sign in
    Close

    Lost your password?

    Facebook
    Google
    Social Loader

    No account yet?

    Create an Account
    Start typing to see products you are looking for.
    Top Image

    Enter your mobile number now and get 200EGP OFF!

    DISCOUNT VOUCHER

    200EGP OFF

    Follow us to catch the latest promotions

    Select your currency
    EGP
    SAR
    < Back to all reviews
    Tufted Tassel Decor Cushion with filler
    < Back to all reviews
    Tufted Tassel Decor Cushion with filler
    Shop
    Wishlist
    1 item Cart
    My account
    WhatsApp
    Hello 👋
    Can we help you?
    Open chat