رفتن به مطلب

Detroit-City

عضو سایت
  • تعداد ارسال‌ها

    102
  • تاریخ عضویت

  • آخرین بازدید

نوشته‌ها ارسال شده توسط Detroit-City

  1. درست شد

    خیلی خیلی خیلی ممنون.

    واقعا دستت درد نکنه.

    الان دکمه درست پایین و سمت راست کالا هست چطور میتونم بیارمش بالا (کنار قیمت) - و چطور میتونم اسمش را تقییر بدم - الان نوشته, خرید - چطور اسم دکمه را بزارم افزوندن به سبد خرید)

  2. درست شد - ولی فقط صفحه اصلی

    اگه بخام این دکمه روی محصولات صفحه shop - که همه محصولات اونجا قرار میگیرند هم باشه, توی کدوم فایل باید قرار بدم.

    برای صفحه shop , کدی که دادید را در meta_query کدوم فایل بزارم؟

    admin-hooks.php

    template-sitemap.php

    admin-functions.php

    template-sitemap.php

    template-sale.php

    ممنون

  3. ممنون

    ولی من نمیدونم کوئری چی هست! باید نو کدوم فایل قرار بدم؟

    این کد فایل - theme-woocommerce.php هست فکر کنم باید از اینجا درست بشه


    <?php
    /*-----------------------------------------------------------------------------------*/
    /* Any WooCommerce overrides can be found here
    /*-----------------------------------------------------------------------------------*/
    // Disable WooCommerce styles
    define('WOOCOMMERCE_USE_CSS', false);
    // Change columns in product loop to 3
    add_filter('loop_shop_columns', 'loop_columns');
    if (!function_exists('loop_columns')) {
    function loop_columns() {
    return 3;
    }
    }
    // Display 12 products per page
    add_filter('loop_shop_per_page', create_function('$cols', 'return 12;'));
    // Remove the add to cart button from the product loop
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10, 2);
    // Adjust markup on all woocommerce pages
    remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
    remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
    if (!function_exists('woocommerce_wrapper')) {
    function woocommerce_wrapper(){
    echo '<section id="content" class="eightcol" role="content">';
    }
    }
    if (!function_exists('woocommerce_close_wrapper')) {
    function woocommerce_close_wrapper(){
    echo '</section>';
    }
    }
    add_action( 'woocommerce_before_main_content', 'woocommerce_wrapper', 10);
    add_action( 'woocommerce_after_main_content', 'woocommerce_close_wrapper', 10);
    // Remove breadcrumb (we're using the WooFramework default breadcrumb)
    remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
    add_action( 'woocommerce_before_main_content', 'woocommerceframework_breadcrumb', 01, 0);
    function woocommerceframework_breadcrumb() {
    global $woo_options;
    if ( $woo_options[ 'woo_breadcrumbs_show' ] == 'true' ) {
    woo_breadcrumbs();
    }
    }
    // Remove pagination (we're using the WooFramework default pagination)
    remove_action( 'woocommerce_pagination', 'woocommerce_pagination', 10 );
    add_action( 'woocommerce_pagination', 'woocommerceframework_pagination', 10 );
    function woocommerceframework_pagination() {
    if ( is_search() && is_post_type_archive() ) {
    add_filter( 'woo_pagination_args', 'woocommerceframework_add_search_fragment', 10 );
    add_filter( 'woo_pagination_args_defaults', 'woocommerceframework_woo_pagination_defaults', 10 );
    }
    woo_pagination();
    }
    function woocommerceframework_add_search_fragment ( $settings ) {
    $settings['add_fragment'] = '&post_type=product';

    return $settings;
    } // End woocommerceframework_add_search_fragment()
    function woocommerceframework_woo_pagination_defaults ( $settings ) {
    $settings['use_search_permastruct'] = false;

    return $settings;
    } // End woocommerceframework_woo_pagination_defaults()
    // Remove sidebar on single shop pages
    //add_action('wp', create_function("", "if (is_singular(array('product'))) remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10);") );
    // Remove sidebar on shop archive pages
    //add_action('wp', create_function("", "if (is_archive(array('product'))) remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10);") );

    // Change columns in related products output to 3 and move below the product summary
    remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20);
    add_action( 'woocommerce_after_single_product', 'woocommerce_output_related_products', 20);

    if (!function_exists('woocommerce_output_related_products')) {
    function woocommerce_output_related_products() {
    woocommerce_related_products(3,3); // 3 products, 3 columns
    }
    }

    // Adjust the star rating in the sidebar
    add_filter('woocommerce_star_rating_size_sidebar', 'woostore_star_sidebar');
    if (!function_exists('woostore_star_sidebar')) {
    function woostore_star_sidebar() {
    return 12;
    }
    }
    // Adjust the star rating in the recent reviews
    add_filter('woocommerce_star_rating_size_recent_reviews', 'woostore_star_reviews');
    if (!function_exists('woostore_star_reviews')) {
    function woostore_star_reviews() {
    return 12;
    }
    }
    // Sticky shortcode
    function woo_shortcode_sticky( $atts, $content = null ) {
    extract( shortcode_atts( array(
    'class' => '',
    ), $atts ) );

    return '<div class="shortcode-sticky ' . esc_attr($class) . '">' . $content . '</div><!--/shortcode-sticky-->';
    }
    add_shortcode( 'sticky', 'woo_shortcode_sticky' );
    // Sale shortcode
    function woo_shortcode_sale ( $atts, $content = null ) {
    $defaults = array();
    extract( shortcode_atts( $defaults, $atts ) );
    return '<div class="shortcode-sale"><span>' . $content . '</span></div><!--/.shortcode-sale-->';
    }
    add_shortcode( 'sale', 'woo_shortcode_sale' );
    // If theme lightbox is enabled, disable the WooCommerce lightbox and make product images prettyPhoto galleries
    add_action( 'wp_footer', 'woocommerce_prettyphoto' );
    function woocommerce_prettyphoto() {
    global $woo_options;
    if ( $woo_options[ 'woo_enable_lightbox' ] == "true" ) {
    update_option( 'woocommerce_enable_lightbox', false );
    ?>
    <script>
    jQuery(document).ready(function(){
    jQuery('.images a').attr('rel', 'prettyPhoto[product-gallery]');
    });
    </script>
    <?php
    }
    }
    // Handle cart in header fragment for ajax add to cart
    add_filter('add_to_cart_fragments', 'woocommerceframework_header_add_to_cart_fragment');
    if (!function_exists('woocommerceframework_header_add_to_cart_fragment')) {
    function woocommerceframework_header_add_to_cart_fragment( $fragments ) {
    global $woocommerce;

    ob_start();

    ?>
    <ul class="mini-cart">
    <li>
    <a href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>">
    <?php _e('Cart:', 'woothemes');?> <?php
    echo $woocommerce->cart->get_cart_total();
    ?>
    </a>
    <?php

    echo '<ul class="cart_list">';
    if (sizeof($woocommerce->cart->cart_contents)>0) : foreach ($woocommerce->cart->cart_contents as $cart_item_key => $cart_item) :
    $_product = $cart_item['data'];
    if ($_product->exists() && $cart_item['quantity']>0) :
    echo '<li><a href="'.get_permalink($cart_item['product_id']).'">';

    echo $_product->get_image();

    echo apply_filters('woocommerce_cart_widget_product_title', $_product->get_title(), $_product).'</a>';

    if($_product instanceof woocommerce_product_variation && is_array($cart_item['variation'])) :
    echo woocommerce_get_formatted_variation( $cart_item['variation'] );
    endif;

    echo '<span class="quantity">' .$cart_item['quantity'].' × '.woocommerce_price($_product->get_price()).'</span></li>';
    endif;
    endforeach;

    else: echo '<li class="empty">'.__('No products in the cart.','woothemes').'</li>'; endif;
    if (sizeof($woocommerce->cart->cart_contents)>0) :
    echo '<li class="total"><strong>';

    if (get_option('js_prices_include_tax')=='yes') :
    _e('Total', 'woothemes');
    else :
    _e('Subtotal', 'woothemes');
    endif;



    echo ':</strong>'.$woocommerce->cart->get_cart_total();'</li>';

    echo '<li class="buttons"><a href="'.$woocommerce->cart->get_cart_url().'" class="button">'.__('View Cart →','woothemes').'</a> <a href="'.$woocommerce->cart->get_checkout_url().'" class="button checkout">'.__('Checkout →','woothemes').'</a></li>';
    endif;

    echo '</ul>';

    ?>
    </li>
    </ul>
    <?php

    $fragments['ul.mini-cart'] = ob_get_clean();

    return $fragments;

    }
    }
    ?>

  4. سلام

    در قالب فروشگاه سازم من, دکمه افزودن به سبد خرید روی محصول در صفحه اصلی(کتگوری) نیست و باید روی محصول کلیک بشه و وارد صفحه محصول شد و در اونجا دکمه افزودن به سبد خرید را زد.

    این عکس زیر را خودم با فتو شاپ درست کردم - میخوام اینتوری بشه - دکمه سبز اضافه بشه.

    باید چیکار کنم.

    کد بدید یا بگید تا دست رسی بدم.

    d3tk_asd.jpg

  5. پیدا کرد.

    فقط در خط 5 بجای new-address مسیرجدید را بنویسید - عدد 5 هم زمان هست که یعنی بعد از 5 ثانیه آدرس را تغییر بده - اگر 0 بزارید سریع به مسیر میره و صفحه اصلی بالا نمیاد.

    کد را در بالای index.php بزارید.

    <script type="text/javascript">

    function go2NewUrl(newUrl, sec) {

    setTimeout("location.href='" + newUrl + "'", sec * 1000);

    }

    go2NewUrl('http://new-address.com', 5);

    </script>

  6. سلام

    قالب من مشکل داره و نمیتونم از بخش تنطیمات > خواندن > در برگه‌ی نخست نمایش داده شود, برگه مورد نظرم را بزارم صفحه اصلی.

    لطف کنید و یک کد بدید تا من با اظافه کردن لینک صفحه مورد نظرم - صفحه اصلی به اون برگه منتقل بشه (قبل از لود کامل صفحه اصلی)

    لطف کنید و بگید این کد را در چه فایلی و در کجا بزارم.

  7. سلام

    داشتم یک افزونه را نسب میکردم که مرورگر هنگ کرد و نصب نیمه کاره موند و این خط زیر در بالای پنل و هم سایت, الان نمایش داده میشه.

    Warning: call_user_func_array() expects parameter 1 to be a valid callback, class 'Sat_WC_Order_SMS' does not have a method 'localization_setup' in /home/sait/domains/sait.com/public_html/wp-includes/plugin.php on line 505

    افزونه را حذف کردم و دوباره نصب کردم - نشد

    افزونه را کلا حذف کردم - بازم نشد

    چیکار کنم؟

    کد زیر خط 504 به بعد هست (خط 505 را خطا گرفته)

    do {

    foreach ( (array) current($wp_filter[$tag]) as $the_ )

    if ( !is_null($the_['function']) )

    call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args']));

    } while ( next($wp_filter[$tag]) !== false );

    array_pop($wp_current_filter);

    }

  8. احتمالا در این فایله

    includes/theme-woocommerce.php

    خیر در این فایل هم نیست


    <?php
    /*-----------------------------------------------------------------------------------*/
    /* Any WooCommerce overrides can be found here
    /*-----------------------------------------------------------------------------------*/
    // Disable WooCommerce styles
    define('WOOCOMMERCE_USE_CSS', false);
    // Change columns in product loop to 3
    add_filter('loop_shop_columns', 'loop_columns');
    if (!function_exists('loop_columns')) {
    function loop_columns() {
    return 3;
    }
    }
    // Display 12 products per page
    add_filter('loop_shop_per_page', create_function('$cols', 'return 12;'));
    // Remove the add to cart button from the product loop
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10, 2);
    // Adjust markup on all woocommerce pages
    remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
    remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
    if (!function_exists('woocommerce_wrapper')) {
    function woocommerce_wrapper(){
    echo '<section id="content" class="eightcol" role="content">';
    }
    }
    if (!function_exists('woocommerce_close_wrapper')) {
    function woocommerce_close_wrapper(){
    echo '</section>';
    }
    }
    add_action( 'woocommerce_before_main_content', 'woocommerce_wrapper', 10);
    add_action( 'woocommerce_after_main_content', 'woocommerce_close_wrapper', 10);
    // Remove breadcrumb (we're using the WooFramework default breadcrumb)
    remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
    add_action( 'woocommerce_before_main_content', 'woocommerceframework_breadcrumb', 01, 0);
    function woocommerceframework_breadcrumb() {
    global $woo_options;
    if ( $woo_options[ 'woo_breadcrumbs_show' ] == 'true' ) {
    woo_breadcrumbs();
    }
    }
    // Remove pagination (we're using the WooFramework default pagination)
    remove_action( 'woocommerce_pagination', 'woocommerce_pagination', 10 );
    add_action( 'woocommerce_pagination', 'woocommerceframework_pagination', 10 );
    function woocommerceframework_pagination() {
    if ( is_search() && is_post_type_archive() ) {
    add_filter( 'woo_pagination_args', 'woocommerceframework_add_search_fragment', 10 );
    add_filter( 'woo_pagination_args_defaults', 'woocommerceframework_woo_pagination_defaults', 10 );
    }
    woo_pagination();
    }
    function woocommerceframework_add_search_fragment ( $settings ) {
    $settings['add_fragment'] = '&post_type=product';

    return $settings;
    } // End woocommerceframework_add_search_fragment()
    function woocommerceframework_woo_pagination_defaults ( $settings ) {
    $settings['use_search_permastruct'] = false;

    return $settings;
    } // End woocommerceframework_woo_pagination_defaults()
    // Remove sidebar on single shop pages
    //add_action('wp', create_function("", "if (is_singular(array('product'))) remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10);") );
    // Remove sidebar on shop archive pages
    //add_action('wp', create_function("", "if (is_archive(array('product'))) remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10);") );

    // Change columns in related products output to 3 and move below the product summary
    remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20);
    add_action( 'woocommerce_after_single_product', 'woocommerce_output_related_products', 20);

    if (!function_exists('woocommerce_output_related_products')) {
    function woocommerce_output_related_products() {
    woocommerce_related_products(3,3); // 3 products, 3 columns
    }
    }

    // Adjust the star rating in the sidebar
    add_filter('woocommerce_star_rating_size_sidebar', 'woostore_star_sidebar');
    if (!function_exists('woostore_star_sidebar')) {
    function woostore_star_sidebar() {
    return 12;
    }
    }
    // Adjust the star rating in the recent reviews
    add_filter('woocommerce_star_rating_size_recent_reviews', 'woostore_star_reviews');
    if (!function_exists('woostore_star_reviews')) {
    function woostore_star_reviews() {
    return 12;
    }
    }
    // Sticky shortcode
    function woo_shortcode_sticky( $atts, $content = null ) {
    extract( shortcode_atts( array(
    'class' => '',
    ), $atts ) );

    return '<div class="shortcode-sticky ' . esc_attr($class) . '">' . $content . '</div><!--/shortcode-sticky-->';
    }
    add_shortcode( 'sticky', 'woo_shortcode_sticky' );
    // Sale shortcode
    function woo_shortcode_sale ( $atts, $content = null ) {
    $defaults = array();
    extract( shortcode_atts( $defaults, $atts ) );
    return '<div class="shortcode-sale"><span>' . $content . '</span></div><!--/.shortcode-sale-->';
    }
    add_shortcode( 'sale', 'woo_shortcode_sale' );
    // If theme lightbox is enabled, disable the WooCommerce lightbox and make product images prettyPhoto galleries
    add_action( 'wp_footer', 'woocommerce_prettyphoto' );
    function woocommerce_prettyphoto() {
    global $woo_options;
    if ( $woo_options[ 'woo_enable_lightbox' ] == "true" ) {
    update_option( 'woocommerce_enable_lightbox', false );
    ?>
    <script>
    jQuery(document).ready(function(){
    jQuery('.images a').attr('rel', 'prettyPhoto[product-gallery]');
    });
    </script>
    <?php
    }
    }
    // Handle cart in header fragment for ajax add to cart
    add_filter('add_to_cart_fragments', 'woocommerceframework_header_add_to_cart_fragment');
    if (!function_exists('woocommerceframework_header_add_to_cart_fragment')) {
    function woocommerceframework_header_add_to_cart_fragment( $fragments ) {
    global $woocommerce;

    ob_start();

    ?>
    <ul class="mini-cart">
    <li>
    <a href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>">
    <?php _e('Cart:', 'woothemes');?> <?php
    echo $woocommerce->cart->get_cart_total();
    ?>
    </a>
    <?php

    echo '<ul class="cart_list">';
    if (sizeof($woocommerce->cart->cart_contents)>0) : foreach ($woocommerce->cart->cart_contents as $cart_item_key => $cart_item) :
    $_product = $cart_item['data'];
    if ($_product->exists() && $cart_item['quantity']>0) :
    echo '<li><a href="'.get_permalink($cart_item['product_id']).'">';

    echo $_product->get_image();

    echo apply_filters('woocommerce_cart_widget_product_title', $_product->get_title(), $_product).'</a>';

    if($_product instanceof woocommerce_product_variation && is_array($cart_item['variation'])) :
    echo woocommerce_get_formatted_variation( $cart_item['variation'] );
    endif;

    echo '<span class="quantity">' .$cart_item['quantity'].' × '.woocommerce_price($_product->get_price()).'</span></li>';
    endif;
    endforeach;

    else: echo '<li class="empty">'.__('No products in the cart.','woothemes').'</li>'; endif;
    if (sizeof($woocommerce->cart->cart_contents)>0) :
    echo '<li class="total"><strong>';

    if (get_option('js_prices_include_tax')=='yes') :
    _e('Total', 'woothemes');
    else :
    _e('Subtotal', 'woothemes');
    endif;



    echo ':</strong>'.$woocommerce->cart->get_cart_total();'</li>';

    echo '<li class="buttons"><a href="'.$woocommerce->cart->get_cart_url().'" class="button">'.__('View Cart →','woothemes').'</a> <a href="'.$woocommerce->cart->get_checkout_url().'" class="button checkout">'.__('Checkout →','woothemes').'</a></li>';
    endif;

    echo '</ul>';

    ?>
    </li>
    </ul>
    <?php

    $fragments['ul.mini-cart'] = ob_get_clean();

    return $fragments;

    }
    }
    ?>

  9. سلام

    من یکسری فایل عکس را از طریق ایمیل به کاربران ارسال میکنم.

    میخام وقتی این عکس ها در ایمیل بارگزاری شد همزمان یک صفحه پاپ آپ (یا یک تب) باز بشه (این فایل ها در سایت نیستند که لینک مطلب را ایمیل کنم.)

    فقط از طریق htaccess باید این کار را کنم چون فایل ها تو هاست دانلود هستند.

    این کد زیر هست ولی عکس بارگزاری نمیشه و وقتی روی لینک عکس کلیک کنم صفحه باز میشه

    Redirect 301 /pic/32.jpg http://saitcom/

    راهی هست؟

  10. register_taxonomy همچین نوشته ای در هیچ فایلی در قالب نیست. با نرم افزار میگردم - نرم افزار اشتباه نمیکنه.

    فانکشن از خیلی فایل ها اینکلود میکنه نرم افزار داخل اون ها را هم گشت ولی همچین نوشته ای register_taxonomy پیدا نکرد.


    <?php
    /*-----------------------------------------------------------------------------------*/
    /* Start WooThemes Functions - Please refrain from editing this section */
    /*-----------------------------------------------------------------------------------*/
    add_theme_support( 'woocommerce' );
    // Set path to WooFramework and theme specific functions
    $functions_path = get_template_directory() . '/functions/';
    $includes_path = get_template_directory() . '/includes/';
    // Define the theme-specific key to be sent to PressTrends.
    define( 'WOO_PRESSTRENDS_THEMEKEY', 'f94l3g1m6jvm08jg2bq58s8w5f89x6457' );
    // WooFramework
    require_once ($functions_path . 'admin-init.php' ); // Framework Init
    /*-----------------------------------------------------------------------------------*/
    /* Load the theme-specific files, with support for overriding via a child theme.
    /*-----------------------------------------------------------------------------------*/
    $includes = array(
    'includes/theme-options.php', // Options panel settings and custom settings
    'includes/theme-functions.php', // Custom theme functions
    'includes/theme-plugins.php', // Theme specific plugins integrated in a theme
    'includes/theme-actions.php', // Theme actions & user defined hooks
    'includes/theme-comments.php', // Custom comments/pingback loop
    'includes/theme-js.php', // Load Javascript via wp_enqueue_script
    'includes/sidebar-init.php', // Initialize widgetized areas
    'includes/theme-widgets.php', // Theme widgets
    'includes/theme-install.php', // Theme Installation
    'includes/theme-woocommerce.php' // WooCommerce overrides
    );
    // Allow child themes/plugins to add widgets to be loaded.
    $includes = apply_filters( 'woo_includes', $includes );
    foreach ( $includes as $i ) {
    locate_template( $i, true );
    }
    /*-----------------------------------------------------------------------------------*/
    /*-----------------------------------------------------------------------------------*/
    /*-----------------------------------------------------------------------------------*/
    /* Don't add any code below here or the sky will fall down */
    /*-----------------------------------------------------------------------------------*/
    ?>

  11. کل فایل های قالب را با نرم افزار دنبال register_taxonomy گشتم ولی چیزی پیدا نکرد.

    این


    register_taxonomy( 'product_tag', 'product', $args );

    در کدوم فایل هست؟

    اگه نباشه باید خودم در کدوم فایل بنویسمش؟

    ولی در فایل public_html/wp-includes/taxonomy.php یک چیزایی پیدا کرد که فکر نکنم مربوط به قالب باشه.

    کسی لطف میکنه دسترسی بدم برام درست کنه؟

  12. سلام

    من از یک قالب فروشگاهی استفاده میکنم.

    این قالب برای برچسب های کالا یک قسمت برچسب گزاری جدا داره و برای مطالب هم یک قسمت برچسب گزاری جداگانه دیگه.

    یعنی اگر برای یک کالا برچسب کریستین بیلرا بزنم, این برچسب در قسمت برچسب های مطالب وجود نداره و باید برای مطالب, دوباره درست کنم.

    مشکل اینجاست که من میخام با کلیک کردن روی برچسب کریستین بیل هرچی کالا ها و مطلب , مرتبط به این برچسب هست نمایش داده بشه - الان اینطور نیست.

    123.jpg

    اگر با دقت خوندید و متوجه شدید چه مشکلی دارم - لطف کنید راهنمایی کنید.

    از افزونه page-tagger هم استفاده کردم ولی مشکل حل نشد.

    خیلی متشکر

  13. سلام

    من از دیروز دارم تو نت میگردم و پاسخ ها را تست میکنم ولی هیچ کدون اونی که من میخام نیست.

    یعنی کسی اینجا تجربه تقیب و گریز فیلتری نداره. sait - sait1 - sait120

    چیزی که من میخام دقیقا این هست - سایت من sait.com فیلتر شد - حالا میخام دامنه sait1.com را به سایت وصل کنم, اما میخوام sait.com (و حتی آدرسهای قبلی که فیلتر میشن 1 - 2 - 3) با فیلتر شکن باز بشه و کار خودش را انجام بده.

    sait1.com هم مطالبش در همین آدرس sait1 باز بشه (چون با پارک کردن دامنه وقتی با آدرس sait1 وارد میشم و روی یک مطلب کلیک میکنم میره به sait.com )

    ریدایرک هم دقیق متوجه نشدم چیکار میکنه؟ آدرس قبلی حفض میشه؟ پست هاش در خودش باز میشه یا آدرس جدید؟

    • امتیاز 1
  14. سلام

    من یه دسته دارم به اسم "دانلود تریلر فیلم"

    حالا میخام که وقتی کاربر روی این دسته کلیک میکنه و به صفحه دسته میره همه مطلب را کامل ببینه مثل (لینک ها و عکس ها)

    عکس زیر صفحه دسته هست و هیچ عکسی از مطالب را نشون نمیده و لینک ها هم غیر فعال هستند.

    ut64_12.jpg

    مشکل اینجا هست که کاربر حتما باید روی عنوان مطلب کلیک کنه و وارد مطلب بشه و اونجا به همه مطلب دسترسی داشته باشه . مثل عکس زیر که وارد مطلب شده

    8uqb_13.jpg

    حالا من چیکار کنم که همه مطلب در همون صفحه دسته دانلود تریلر فیلم نمایش داده بشه؟

    کد نویسی بلد نیستم

×
×
  • اضافه کردن...