Search:

Type: Posts; User: yesaul

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    58

    v2.0.0 Re: Code in default_filter.php

    I use my own template, where "sort-by-clicking-column-heading" is (still) in use

    But this does actually no matter, as code quoted in my first message seems meaningless anyway

    I suggest I am not...
  2. Replies
    3
    Views
    58

    v2.0.0 Re: Code in default_filter.php

    // Legacy $_GET['sort'] which was used for sort-by-clicking-column-heading
    if (!isset($_GET['sort']) && PRODUCT_LISTING_DEFAULT_SORT_ORDER !== '') {
    $_GET['sort'] =...
  3. Replies
    3
    Views
    58

    v2.0.0 Code in default_filter.php

    Sorry, if I do understand something wrong, but this code does not seem correct, IMHO:


    // Legacy $_GET['sort'] which was used for sort-by-clicking-column-heading
    if (isset($column_list) &&...
  4. v158 "Undefined variable" warning in zen_build_keyword_where_clause function

    Happy New Year everyone

    PHP 8 can generate "Undefined variable" and "Passing null to parameter" warnings in zen_build_keyword_where_clause function (functions_strings.php, line 211)


    ...
  5. Replies
    64
    Views
    12,192

    v155 Re: VAT4EU Support Thread

    Good day,

    Sorry (if I do understand sometyhng wrong or issue has been already described), but the following code in auto.vat_for_eu_countries.php module can cause "Undefined variable" warning:

    ...
  6. v158 Undefined variable $country in /includes/modules/create_account.php

    Good day,

    Sorry (if I do understand sometyhng wrong or issue has been already described), but the following code in create_account.php module can cause "Undefined variable" warning:


    /**
    *...
  7. Replies
    2
    Views
    3,147

    v158 Re: $show_info_page_ask_a_question

    Thank you for the hint
    everything is Ok now
    My mistake
    This thread should probably be removed
    Thank you again
  8. Replies
    2
    Views
    3,147

    v158 $show_info_page_ask_a_question

    The following code appeared in "Ask a Question Page" header_php.php in newest 158a release:


    // -----
    // Check to see if the "Show Ask a Question" button is enabled for the product's
    // type. ...
  9. v158 Re: "$currentPage != 0" expression in admin/countries.php

    Copy grabbed from Github seems working faultlessly.

    Thank you for support and sorry for fuss
  10. v158 "$currentPage != 0" expression in admin/countries.php

    Hello

    IMHO $currentPage !=0 expression in admin/countries.php file (lines ##147, 165, 172, 176, 183, 187, 190, 195, 222) should be relaced to $currentPage !== '' (as in some another lines of the...
  11. Replies
    1
    Views
    3,791

    Robots_pages_to_skip

    Hello,

    In earlier versions of ZC, definition of 'ROBOTS_PAGES_TO_SKIP' was in 'meta_tags.php' file and looked like:

    ...
  12. Replies
    1
    Views
    517

    v157 Countries dropdown menu

    Very tiny bug appearing in case the Country set up for the top of Countries dropdown menu is actually disabled (status=0) in Admin

    What we have:

    1. zen_get_country_list function, which seems...
  13. Replies
    1
    Views
    520

    v157 Empty entries in countries drop down menu

    Very tiny bug appearing in case the Country set up for the top of Countries dropdown meny is actually disabled (status=0) in Admin

    What we have:

    1. zen_get_country_list function, which seems...
  14. Replies
    3
    Views
    784

    v157 Empty entries in countries dropdown menu

    Very tiny bug appearing in case the Country set up for the top of Countries dropdown meny is actually disabled (status=0) in Admin

    What we have:

    1. zen_get_country_list function, which seems...
  15. Sticky: v155 Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    As addition to deleting of 'zca_responsive_functions.php' file (containing code, which is non-functional anyway), here is my suggestion for code in 'init_zca_layout.php' file:


    if...
  16. Sticky: v155 Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Sure, it can. But this makes using $_SESSION['layoutType'] completely useless

    - no relevant info will be kept within session in $_SESSION['layoutType']

    - mobile detection will be being done...
  17. Sticky: v155 Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    And also, should the following line be added in the beginning of function initLayoutType() ?


    if (!class_exists('Mobile_Detect')) include_once DIR_WS_CLASSES . 'Mobile_Detect.php';
  18. Sticky: v155 Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Hello,
    I spent a lot of time trying to realize how the layout recognizion mechanism is working
    (Actually, the most important question was why $_SESSION['layoutType'] varable is always set to...
  19. v157 zen_get_products_quantity_min_units_display

    lines535...549 of includes/functions/function_prices.php:

    // quantity max
    $check_max = zen_get_products_quantity_order_max($product_id);

    if ($check_max != 0) {
    ...
  20. Replies
    1,247
    Views
    272,938

    v155 Re: ZCA Bootstrap Template

    just in case...

    modules/bootstrap/centerboxes/fetured_products.php - line # 85


    $title = '<h4 id="featuredCenterbox-card-header" class="centerBoxHeading card-header">' ....
  21. Thread: MobiZenCart

    by yesaul
    Replies
    46
    Views
    68,776

    v154 Re: MobiZenCart

    Thank you for your prompt reply, DrByte

    My (probably idiotic) idea was to find some template, where only mobile (not responsive) design is realised

    (for some testing, as I do already have a...
  22. Thread: MobiZenCart

    by yesaul
    Replies
    46
    Views
    68,776

    v154 Re: MobiZenCart

    Hello,

    Is anybody here?

    Has somebody tried to use this add with v1.5.7b ?

    Not all pages are (always) being loaded...

    It seems, something is wrong with Jquery Mobile lib
  23. Replies
    123
    Views
    28,164

    v151 Re: IP Blocker 1.5.1

    Hello,

    The following PHP Warnings appeared in the logs, when I tried to add the IP-address to "Blocked IP Addresses" list for the first time (using a link on "Who's Online" page)




    I tried...
  24. v157 Re: parameter $zf_order_id is not being transferred into the after_order_create metho

    I'm not sure, if my experience in this case can be helpful for somebody, but anyway:

    I use my own module for card payments, where after_order_create method is being used to associate the payment...
  25. v157 [Done v157a] Parameter $zf_order_id is not being transferred to after_order_create

    Hello,

    Sorry, if my question is stupid - I'm not a pro and supporting my onw web-shop only, but...

    Is this code (appeared in V157 in includes/classes/payment.php) really correct:


    ...
  26. Replies
    64
    Views
    12,192

    v155 Re: VAT4EU Support Thread

    @lat9, Sure, your solution is better :-)

    But note: it is necessary also to replace 'EL' to 'GR' (or simply add 'GR') in VAT4EU_EU_COUNTRIES configuration key
  27. Replies
    64
    Views
    12,192

    v155 Re: VAT4EU Support Thread

    Hello,

    This add-on is unfortunately not working for VAT-Numbers from Greece.

    (It seems a little bit strange to me, I'm the first, who noticed this, but I haven't found any information about...
  28. Replies
    209
    Views
    47,889

    Re: Save For Later Support Thread

    Thank you for your reply. And sorry, probably my explanations were not clear enough.

    I try to test your addon on pure Zen Cart 156c, using Responsive Classic template by default.

    Once again...
  29. Replies
    209
    Views
    47,889

    Re: Save For Later Support Thread

    Good plugin. Everything seems working smooth.

    But it seems also, there is some usability issue there:

    If I have some 'Saved For Later' products, but my shopping cart is empty (I've placed an...
  30. Replies
    1,786
    Views
    247,467

    v150 Re: Edit Orders v4.0 Support Thread

    Thank you for prompt reply.
    I'm pretty sure, you understand how array_merge works, but I haven't been sure if I do too...

    To my happiness, I do not use products with attributes.

    And is seems,...
  31. Replies
    1,786
    Views
    247,467

    v150 Re: Edit Orders v4.0 Support Thread

    array-merge "merges the elements of one or more arrays together so that the values of one are appended to the end of the previous one. It returns the resulting array. If the input arrays have the...
  32. v150 Re: Template override in languages/english/modules/shipping not working

    The issue described and the suggested revision(s) do align.

    Please read carefully the description of the problem and its solution in the initial topicstarter's message:



    Additionally, this...
  33. v150 Re: Template override in languages/english/modules/shipping not working

    The overiding system is being applied for language files in /includes/languages/YOUR_LANGUAGE/modules/shipping/ folder.

    But it seems, the code in admin/modules.php and admin/orders.php files does...
  34. Replies
    1,786
    Views
    247,467

    v150 Re: Edit Orders v4.0 Support Thread

    Hi!

    Is this correct? ( $order->id ?? )


    <td colspan="2" align="right" class="noprint"><?php echo '<a href="' . zen_href_link(FILENAME_ORDERS_INVOICE, 'oID=' . $order->id) . '"...
  35. v154 Re: Check if needle actually exists before strstr? Particularly $_SERVER['REMOTE_ADDR

    This should probably mean, empty $_SERVER['REMOTE_ADDR'] is being replaced with 'dot' character (in init_sessions.php since 1.5.5), but I'm anyway getting the above mentioned error even using the...
  36. Replies
    5
    Views
    2,077

    Re: Using Observer/Notifier System in order class

    Hello,

    Many thanks for your advice! Everything is running smooth now!

    (Anyway there was one thing I correctly assumedy: the solution is really simply :-) )

    Thank you again and best regards,...
  37. Replies
    5
    Views
    2,077

    Re: Using Observer/Notifier System in order class

    Hello,

    Many thanks for your reply!

    I was exactly writing an additional message displaying the observer's code, which I've used for tests, when I got your reply.

    It seems, my code is very...
  38. Replies
    5
    Views
    2,077

    Using Observer/Notifier System in order class

    Hello,

    I'd like to change information, which is being prepared for sending by E-mail while placing the order.

    (In another words: I'd like to replace $email_order string and $html_msg array,...
  39. Thread: Cron Job

    by yesaul
    Replies
    19
    Views
    4,008

    v151 Re: Cron Job

    Hello, Please excuse me - I have been definitely not going to be impolite!

    I'm very thankful for your replies, but you try to explain me (again and again), how to hide the problem, but not solve...
  40. Thread: Cron Job

    by yesaul
    Replies
    19
    Views
    4,008

    v151 Re: Cron Job

    Hello,

    Thank you for your reply.



    Yes, I do.


    00 9 * * * wget http://yourdomain.com/YOUR_ADMIN/aut...open_close.php >/dev/null 2>&1
  41. Thread: Cron Job

    by yesaul
    Replies
    19
    Views
    4,008

    v151 Re: Cron Job

    Hello,

    Thank you for your reply, but could you please explain, now your plugin can help to find an answer to my question?

    Your plugin uses application_top.php in standard way and will generate...
  42. Thread: Cron Job

    by yesaul
    Replies
    19
    Views
    4,008

    v151 Re: Cron Job

    Hello,

    The described solution works, but I found out, it causes the following PHP Warning (in case the sctipt is being executed by cron, not from Admin):



    Here is the appropriate part of...
  43. Replies
    11
    Views
    3,141

    v151 Re: Place order before payment redirect/popup

    Hello Rued,

    Did you find any solution for the described problem ?

    (I clearly understand the problem, I agree with the solution ways you offer, but the question is how to fix it)


    BR, AR
  44. Replies
    264
    Views
    64,353

    Re: Backup MySQL Database

    Hello,

    When backup, I'm gettin a message:

    0 => Warning: mysqldump: Option '--set-variable' is deprecated. Use --variable-name=value instead.


    How can I fix this?
  45. Thread: SitemapXML v.2

    by yesaul
    Replies
    2,106
    Views
    423,168

    Re: SitemapXML v.2

    Hello,




    Link to Yahoo is still not working

    (http://search.yahooapis.com/SiteExplorerService/V1/updateNotification?appid=YahooDemo&url=%s; )

    :(
Results 1 to 45 of 49
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR