Forum Replies Created

Viewing 15 replies - 1 through 15 (of 114 total)
  • Thread Starter pexel

    (@pexel)

    I got it done, thanks

    Thread Starter pexel

    (@pexel)

    I fixed the code, and it prints the result. Every time we click ‘calculate,’ it prints the updated result. I wanted it to count down live after clicking ‘calculate’ just once.

    Here’s the form link.

    (function() {

    if (typeof my_timeout_identifier != 'undefined') {
    clearTimeout(my_timeout_identifier);
    }

    my_timeout_identifier = setTimeout(function() {
    EVALEQUATION(fieldname5|n);
    }, 1000);


    let o = DATEDIFF(NOW(), fieldname6, 'yyyy/mm/dd hh:ii:ss', 'd');


    let kriter5 = CONCATENATE(o['days'], ' gün ', o['hours'], ' saat ', o['minutes'], ' dakika ', o['seconds'], ' saniye');

    jQuery('#calculation-kriter5').html(kriter5);
    jQuery('.kriter5-aciklama').html('Saya? :');
    jQuery('.kriter5-sonuc').html(kriter5);

    return kriter5;
    })();
    Thread Starter pexel

    (@pexel)

    fieldname5: Today’s date (day/hour/minute/second)
    fieldname6: Target date (day/hour/minute/second)

    However, it calculates the duration but does not count down. Could there be a mistake somewhere?
    Additionally, if the user selects a past date, is it possible to give a warning message for the countdown?
    Thank you!

    (function() {

    if (typeof my_timeout_identifier !== 'undefined') {
    clearTimeout(my_timeout_identifier);
    }

    my_timeout_identifier = setTimeout(function() {
    EVALEQUATION(fieldname5 | n);
    }, 1000);


    let o = DATEDIFF(fieldname5, fieldname6, 'yyyy/mm/dd hh:ii:ss', 'd');


    let kriter5 = CONCATENATE(o['days'], ' gün ', o['hours'], ' saat ', o['minutes'], ' dakika ', o['seconds'], ' saniye');

    jQuery('#calculation-kriter5').html(kriter5);
    jQuery('.kriter5-aciklama').html('Saya? :');
    jQuery('.kriter5-sonuc').html(kriter5);

    return kriter5;
    })();
    Thread Starter pexel

    (@pexel)

    Thanks to you, I have solved the first stage, even 80% of it. Only this part remains, how can we adapt it?

    var totalMonths = (a4Score[0] * 12) + a4Score[1];  
    var a4diffMonths = (a4diff.getFullYear() * 12) + a4diff.getMonth();
    if (a4diffMonths > totalMonths) {
    kriter3 = "Sigortal?l?k Süresi Tamamlanm??";
    } else {
    var remainingMonths = totalMonths - a4diffMonths;
    var reqyear = Math.floor(remainingMonths / 12);
    var reqmonth = remainingMonths % 12;
    kriter3 = reqyear + " Y?l " + (reqmonth === 0 ? "" : reqmonth + " Ay") + " sigortal?l?k süresi";
    }
    Thread Starter pexel

    (@pexel)

    thank you

    Thread Starter pexel

    (@pexel)

    Thank you ? cleared wp-rocket

    • This reply was modified 1 month, 3 weeks ago by pexel.
    Thread Starter pexel

    (@pexel)

    Got it, thanks.

    Thread Starter pexel

    (@pexel)

    Hello;
    Blocked by robots.txt. page continues to rise rapidly, producing an average of 200-300 links every day. Why does it produce so many pages even though these pages are defined as meta, robots.txt and remove URL option to be added to the index? It harms the crawl budget. Do you have any ideas? I have been reviewing it for 3-4 days, but it continues to grow on the Google Search Console screen even though it is not added to the index.

    • This reply was modified 3 months, 3 weeks ago by pexel.
    Thread Starter pexel

    (@pexel)

    Do not load the forms with crawlers
    * The forms are not loaded when website is being indexed by searchers.
    Do we mark the last part?

    Thread Starter pexel

    (@pexel)

    Picture show

    Thread Starter pexel

    (@pexel)

    No, that box is not checked.

    Thread Starter pexel

    (@pexel)

    Hello,

    We already have this tag (Disallow: *?*), but the exact issue is as follows:

    When visiting the page https://www.xxx.com/?cff-form=1, there used to be a title and a description explaining the form. It was indexed and represented a form.

    In the current situation, https://www.xxx.com/?cff-form=44&cff-form-target=_top&_nonce=ee38f13488&cff_iframe=cff-iframe-668d6e5c042bd produces something after the form is submitted. Even if we block them, thousands of links are being created. Currently, there are 11,400 of these links.

    Despite the robots.txt file, these URLs are being indexed, which is destroying the site’s crawl budget. I believe this issue might be software-related since we haven’t made any modifications to the plugin. The first thing that comes to my mind is whether the automatic height adjustment might be causing this issue.

    Thank you.

    • This reply was modified 4 months ago by pexel.
    Thread Starter pexel

    (@pexel)

    Unfortunately, it is currently being indexed, and there are examples in the index. Even though there is a robots.txt file, there is a section on the GSC screen showing that it has been indexed.

    Picture : Indexed even though it is blocked by robots.txt
    This is a non-critical issue. Pages with these issues will be indexed, but their search result appearance may be improved

    Google Index Image is at the bottom.

    Thread Starter pexel

    (@pexel)

    Hello,

    On the GSC (Google Search Console) screen; Under the page count; “Indexed – currently not in the index” “Blocked by robots.txt”

    I am seeing hundreds of thousands of such links being created. Additionally, these issues started on July 22. This type of link is also being indexed.

    A form screen appears with no explanation: ?cff-form=44&cff-form-target=_top&_nonce=ee38f13488&cff_iframe=cff-iframe-668d6e5c042bd.

    Let me know if you need any more help with this!

    Thread Starter pexel

    (@pexel)

    Please, how exactly should I set en and tr? I don’t understand

    The main language of the site is Turkish.

    EN Page
    
    <link rel="alternate"  hreflang="en" />
    <link rel="alternate"  hreflang="tr" />
    <link rel="alternate"  hreflang="x-default" />
    
    TR Page
    
    <link rel="alternate"  hreflang="tr" />
    <link rel="alternate"  hreflang="en" />
    <link rel="alternate"  hreflang="x-default" />
    • This reply was modified 6 months, 2 weeks ago by pexel.
Viewing 15 replies - 1 through 15 (of 114 total)