Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • in reply to: rtl support #70919
    redblox
    Member
    Post count: 4

    Hi Ed,

    It’s working now I had to place a php file in wp-content/laguages folder containing the following code:

    <?php $text_direction = "rtl"; ?>

    Thank you,

    in reply to: View All Products Issue #67833
    redblox
    Member
    Post count: 4

    No worries I fixed the problem myself.

    Here is what I did

    In result-count.php \\ neighborhood > woocommerce > loop > result-count.php

    On line 58 replace this code:

    <a href="?show_products=<?php echo $total;?>"><?php _e("All", "swiftframework"); ?></a>

    With this:

    <?php if (is_paged()) : ?>
    <a href="../../?show_products=<?php echo $total;?>"><?php _e("All", "swiftframework"); ?></a>
    <?php else: ?>
    <a href="?show_products=<?php echo $total;?>"><?php _e("All", "swiftframework"); ?></a>
    <?php endif; ?>

    and that should fix the problem!

    Best,

    in reply to: View All Products Issue #67516
    redblox
    Member
    Post count: 4

    Thank you, Kyle.

    in reply to: View All Products Issue #67485
    redblox
    Member
    Post count: 4

    Hi Kyle,

    I am running WordPress 3.8.3, Neighborhood 1.68 and WooCommerce 2.1.7 but the issue is still present. I don’t know if the demo website is running the latest version but it has the exact same problem.

Viewing 4 posts - 1 through 4 (of 4 total)