Forum Replies Created

Viewing 15 replies - 1 through 15 (of 37 total)
  • Thread Starter kim.oj

    (@kimoj)

    Hi Takayuki
    Thank you for your response!
    I tested the code in the link and it works in e-mails as it should ??

    My problem now is that I want clock present in the mail to.

    What I can see I need to adjust the function custom_clock_form_tag_handler( $tag ) but I can’t figure out exactly how. Because in the datalist function you use an input and I only want to present som data, like in the clock function.

    Thank you for taking your time with this!
    Kind regards Kim

    • This reply was modified 3 years, 2 months ago by kim.oj.

    Had the same problem as Troels
    WP v5.7.1
    Restrict User Access v2.1.3

    Followed the links above, but they didn’t look the same as my files.
    L154 should be L155
    https://github.com/intoxstudio/restrict-user-access/blob/master/level.php#L155
    This should be comment out what I could understand if (!empty($user_levels)) {

    Hi
    I stumbled on the same problem and figured out a solution to it.

    In the “Copy to Clipboard” settings page I have added “.code-block-wrap” as the selector and “copy content as” is set to “text”.

    In my function.php file I added

    add_action( 'wp_footer', 'add_code_block_wrapper' );
    function add_code_block_wrapper() { ?>
    	<script>
    		jQuery( ".wp-block-code" ).wrap( "<div class='code-block-wrap' style='position:relative;''></div>" );
    	</script>
    <?php
    }

    It adds a div around my code and that div is the selector for the copy to clipboard button

    So the end HTML looks like this in the end

    <div class="code-block-wrap" style="position:relative;">
    	<pre class="wp-block-code copy-code-block">
    		<code>CODE HERE</code>
    	</pre>
    	<button class="copy-the-code-button" title="Copy to Clipboard">Copy</button>
    </div>
    • This reply was modified 5 years, 2 months ago by kim.oj.
    Thread Starter kim.oj

    (@kimoj)

    Hi, sorry for the late reply!
    Have been on summer vacation.

    Me and a coworker have found a working solution, we don’t know why the original code isen’t working… but now it works for us.

    We are guessing that its som kind of incompatibility with the theme Enfold, but we cant confirm it.

    The problem that we noticed was

    • Some styles was ignored (4 columns width 25% in desktop should be 100% on mobile, was still 25% in mobile)
    • Some classes wasn’t printed (classes like “avia-builder-el-59 el_after_av_section el_before_av_section”)

    I have tested to turn of all plugins except this one, no change.

    In the file zendesk-request-form.php we have replaced the while loop with a if statement and a foreach.

    Original – line 257

    while ( $custom_fields->have_posts() ): $custom_fields->the_post();
    				
    	$id = get_the_ID();
    	$field_type = esc_attr(get_post_meta($id, 'field-type', true));
    				
    	if ($field_type != 'descriptive') { // check if it's actually a field or just description text/html

    Our code

    if($custom_fields && isset($custom_fields->posts) && sizeof($custom_fields->posts) > 0) {
    	foreach ($custom_fields->posts as $cf) {
    		$id = $cf->ID;
    		$field_type = esc_attr(get_post_meta($id, 'field-type', true));
    				
    		if ($field_type != 'descriptive') { // check if it's actually a field or just description text/html

    I can send you the file if you want.

    Thread Starter kim.oj

    (@kimoj)

    Ok new update!
    We changed to
    [zendesk_request_form subject="Vill bli kontaktad" subject_prefix="F?rfr?gan Startsidan:" useragent="no" label_email="Din E-post" label_name="Ditt Namn" label_description="Skriv meddelande" label_submit="Skicka" group="luftkond-form" size="4"]
    But still no luck…
    If I change to
    [zendesk_request_form subject="Vill bli kontaktad" subject_prefix="F?rfr?gan Startsidan:" useragent="no" label_email="Din E-post" label_name="Ditt Namn" label_description="Skriv meddelande" label_submit="Skicka" group="luftkond-forma" size="4"]
    it works… so now i’m thinking there is something else wrong, but what I can’t figure out…

    Thread Starter kim.oj

    (@kimoj)

    Solved it by installing HREFLANG Tags Lite

    Here are my support question there: https://www.ads-software.com/support/topic/own-href-options/

    • This reply was modified 5 years, 5 months ago by kim.oj.
    Thread Starter kim.oj

    (@kimoj)

    The shortcode is:

    [zendesk_request_form subject=" Avfuktare" subject_prefix="F?rfr?gan ang?ende:" useragent="no" label_email="Din E-post" label_name="Ditt Namn" label_description="Skriv meddelande" label_submit="Skicka" group="luftkonditionering-form" size="4"]

    This one works
    [zendesk_request_form subject=" Avfuktare" subject_prefix="F?rfr?gan ang?ende:" useragent="no" label_email="Din E-post" label_name="Ditt Namn" label_description="Skriv meddelande" label_submit="Skicka" group="luftkonditioneringform" size="4"]

    • This reply was modified 5 years, 5 months ago by kim.oj.
    Thread Starter kim.oj

    (@kimoj)

    Sorry, needed to update the plugin
    So now it works as it should ??

    Thread Starter kim.oj

    (@kimoj)

    Thank you!

    Thread Starter kim.oj

    (@kimoj)

    Done ??

    Thread Starter kim.oj

    (@kimoj)

    Ok so its a Pro function.
    All sites are on one multisite, do I need Standard or Professional?

    Kind regards
    Kim

    Thread Starter kim.oj

    (@kimoj)

    Thanks David!

    Its already installed, but I can’t see any option to choose:
    en-se
    en-no
    en-dk
    en-lv
    sv-fi

    Thread Starter kim.oj

    (@kimoj)

    Hi David
    I have 5 diffrent sites.
    There is a specific site for every country the company exists in. Overall the info is the same on all the sites but som information may vary so every site has its own english translation.

    For exemple
    .se says it has 5 locations in the country
    .dk says it has 1 location in the country
    boyh .se and .dk says it is a company is a family driven comapny…

    I have polylang installed for the insite navigation (between orignal language and english version) but that plugin don’t handle href langs like your plugin ??

    Thread Starter kim.oj

    (@kimoj)

    Hi David
    and thank you for your response!

    They should look like this:

    <link rel="alternate" href="exemple.se/" hreflang="sv-se" />
    <link rel="alternate" href="exemple.se/en/" hreflang="en-se" />
    <link rel="alternate" href="exemple.no/" hreflang="nb-no" />
    <link rel="alternate" href="exemple.no/en/" hreflang="en-no" />
    <link rel="alternate" href="exemple.fi/" hreflang="fi-fi" />
    <link rel="alternate" href="exemple.fi/sv/" hreflang="sv-fi" />
    <link rel="alternate" href="exemple.dk/" hreflang="da-dk" />
    <link rel="alternate" href="exemple.dk/en/" hreflang="en-dk" />
    <link rel="alternate" href="exemple.lv/" hreflang="lv-lv" />
    <link rel="alternate" href="exemple.lv/en/" hreflang="en-lv" />

    Kind regards Kim

    • This reply was modified 5 years, 8 months ago by kim.oj.
    Thread Starter kim.oj

    (@kimoj)

    Hi
    Unfortunately I can’t share it here, can I email you directly?

Viewing 15 replies - 1 through 15 (of 37 total)