Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • I’ve been having the same issue for a year now and I’ve found no solutions. Orders first come in saying ‘Pending’ since they are not payed yet and then they change to ‘Cancelled’ because customers never managed to figure out the Irish county issue so the payment never went through.

    The error that they get:
    Billing County is not valid. Please enter one of the following: Carlow, Cavan, Clare, Cork, Donegal, Dublin, Galway, Kerry, Kildare, Kilkenny, Laois, Leitrim, Limerick, Longford, Louth, Mayo, Meath, Monaghan, Offaly, Roscommon, Sligo, Tipperary, Waterford, Westmeath, Wexford, Wicklow

    This message seems to be given by Woocommerce I think because PayPal only lets you choose the county from a dropdown list and in the list all counties have ‘Co’ in front of them! So, is one system now recognising the other system even though the correct county has been chosen (there’s no other option but to choose one that’s given so how can it be wrong!?). Is there a way to take the added ‘Co’ away from PayPal or is there a way to add the missing ‘Co’ in front of all the counties in Woocommerce?

    I’d really appreciate some help because we are losing money and customers during a time when absolutely every single one of them is worth gold to any company! Literally our survival depends on finding a solution for this problem. Please someone bring some clarity into this issue. I’ve checked all the settings at least 70 times now and tested every possible checkbox…

    Thread Starter 777akm

    (@777akm)

    Updated and checked the box, it started using header and footer. Then unchecked the box and seems it still works ?? Thank you Ewout!

    Thread Starter 777akm

    (@777akm)

    It wanted elseif.

    That’s the final code:

    add_filter('__after_content_title', 'social_sharing_buttons');
    function social_sharing_buttons($content) {
      if(is_page('15')){
        echo do_shortcode('[ssbp]').$content;
      }  elseif(is_single(array('137','192','167','188','182','179','160','157','195','163','185'))){
        echo do_shortcode('[ssbp]').$content;
        }
    }

    Now just messing with the css so the icons would be next to title.

    Thank you so much Menaka!

    Thread Starter 777akm

    (@777akm)

    Thank you Menaka, now I’m getting somewhere ??

    What do I have to add to functions.php part so it would only show on specific pages and posts?

    Thread Starter 777akm

    (@777akm)

    __after_header and __before_content don’t work since they will not put the thing on the same line with title.

    After all day messing with it I found the part in class-content-headings.php where I could WRITE WHATEVER after the title:

    function tc_post_page_title_callback( $_content = null , $_heading_type = null ) {
            $_title = apply_filters( 'tc_title_text', get_the_title() );
            return sprintf('<%1$s class="entry-title %2$s">%3$s WRITE WHATEVER</%1$s>',
                  apply_filters( 'tc_content_title_tag' , is_singular() ? 'h1' : 'h2' ),
                  apply_filters( 'tc_content_title_icon', 'format-icon' ),
                  apply_filters( 'tc_the_title', $_title )
            );
          }

    and it would show up after the title but that changes all the titles, I’d like it to be visible only on individual posts pages (on every category recipe page). Plus don’t know how to add <?php echo do_shortcode('[ssbp]'); ?> into that so it wouldn’t take the whole page down.

    Thread Starter 777akm

    (@777akm)

    Figured it out.

    Thread Starter 777akm

    (@777akm)

    Decided to go with different theme.

    Thread Starter 777akm

    (@777akm)

    Changed .page .entry-title font size in CSS which took care of the last part also.

    Thread Starter 777akm

    (@777akm)

    Adding <div class="archive"> after <?php get_header(); ?> fixed 90% of the issue but posts have still wrong headings format. Something like <h2 class="entry-title"><?php the_title(); ?></h2> should fit somewhere, but it’s not working also been trying to shove just <div class="entry-title"> everywhere but that also doesn’t work, so suggestions still welcome.

    Thread Starter 777akm

    (@777akm)

    Headings issue solved: deleted all cufon related code/script from header.php ??

    <script type=”text/javascript” src=”<?php bloginfo(‘template_url’); ?>/js/cufon.js”></script>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_url’); ?>/js/Sansation_400-Sansation_700.font.js”></script>
    <script type=”text/javascript”>

    Cufon(‘#intro_text’);
    Cufon(‘#sidebar h2’);
    Cufon(‘.post h2’);
    Cufon(‘#widgetshoppingcart h3’);
    Cufon(‘#homepage_products .title’);

    </script>

    But the category list issue remains ??

Viewing 10 replies - 1 through 10 (of 10 total)