TMNR
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] [Polylang] Menu translated WC pages redirect to default languageI had a problem where “My Account” and “Cart” would redirect to default language. “Hyyan WooCommerce Polylang Integration” plugin fixed it for me, although, it’s not capable of using “Set language from content” in Polylang options.
Theme: Flatsome
Hi,
I have no idea why, but today output is ordered properly without using ordering function.
Thanks for your time ??
Regards,
RokasI am. You’ll have to give me a better explanation.
When I open script editor in Google spreadsheets I only get the following:
- Code.GS file with
function myFunction() {}
– there’s nothing to replace - When I change url to proper site name and form name I just get this error:
You do not have sufficient permissions to access this page.
Hi,
This is what it looks like with the formula I provided above.
If I choose only couple of filters, say, Submitted,hidden-842,hidden-844,hidden-843 – the output is no different as with no filters at all.
Also, could you please clarify where to put the code? I have tried to add it to the CFDBGoogleSSLiveData.js file, it looks like this, but I just get the same error.
Thanks,
RokasHi,
Yes, it works just fine without ordering.
Here’s what I want to output:
=cfdbdata(“https://www.verslopraktikos.lt”, “Registracija ? Verslumo laboratorijas new”, “<user>”, “<password>”, “orderby”, “Submitted,hidden-842,hidden-844,hidden-843,klausimas-1,klausimas-2,klausimas-3,klausimas-4,klausimas-5,klausimas-6,klausimas-7,tvirtinu,Submitted From”)Thanks,
RokasForum: Plugins
In reply to: [Polylang] Polylang and Enfold – translating pages, broken smooth scrollHi,
Thanks for taking your time, unfortunately checking “The front page url…” did not solve the smooth scroll issue. I’ll go check with the theme author.
Just if anyone else is looking for an answer to my first question, I’ve managed to clone the pages using a Duplcate Post plugin.
Regards,
RokasThanks for your reply. I’ll try the workaround.
Forum: Fixing WordPress
In reply to: Update theme internationalization on live siteSince no one is able to assist me with updating a theme translation, I downgraded my POEdit to 1.4.6 and did as usual.
Forum: Fixing WordPress
In reply to: Update theme internationalization on live siteI’m making my own theme based on _s. I can’t say that I’m super-advanced, but usually I know my way around and know how to read Codex. This issue has been bugging me for a long time now.
Also I just updated my POEdit and apparently now there’s is a Paywall for such WordPress functionality (or am I missing something?). What are my options?
Forum: Fixing WordPress
In reply to: Can't get jquery to work.Andrew,
Thanks for pointing this out — this solved the issue. I’ve read about this but haven’t understood the importance nor use of safe wrapping.I am using Firebug, but I’m new to JS, so i don’t even know what to look for. I’ll go read a little on Firebug features ??
Thank you and have a nice day.
Forum: Fixing WordPress
In reply to: Can't get jquery to work.<script src="https://www.pmtau.lt/wp-content/themes/pmtau/js/go-to-top.js?ver=1.0.0" type="text/javascript"> jQuery(document).ready( function() { // Show or hide the sticky footer button $(window).scroll(function() { if ($(this).scrollTop() > 200) { $('#go-to-top').fadeIn(200); } else { $('#go-to-top').fadeOut(200); } }); // Animate the scroll to top $('#go-to-top').click(function(event) { event.preventDefault(); $('html, body').animate({scrollTop: 0}, 300); }); }); </script>
This is what I get when <script> is expanded. It does load correctly and it’s written as you say. Still does not work. Looks like I’m genuinely stuck…
Forum: Fixing WordPress
In reply to: Can't get jquery to work.That code there is by default, I figured it does not matter.
function pmtau_scripts() { wp_enqueue_style( 'pmtau-style', get_stylesheet_uri() ); wp_enqueue_script( 'pmtau-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true ); wp_enqueue_script( 'pmtau-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true ); wp_enqueue_script( 'pmtau-go-to-top', get_template_directory_uri() . '/js/go-to-top.js', array( 'jquery' ), '1.0.0', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } if ( is_singular() && wp_attachment_is_image() ) { wp_enqueue_script( 'pmtau-keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20120202' ); } } add_action( 'wp_enqueue_scripts', 'pmtau_scripts' );
Forum: Fixing WordPress
In reply to: Can't find where to modify a headline, style.css does not work.Ahh, thank you. I thought this only overrides previous CSS entries. Lesson learned.
Forum: Themes and Templates
In reply to: [Spun] [Theme: Spun] Responsive function behaves oddly.I found a solution.
Not the prettiest one, since I did not want to make changes to main theme, hence the child-theme, but that will do.
In theme folder/js/toggle.js I deleted all the code under://Toggle the the main navigation menu for small screens.
That seemed to do the trick. Bot now when (if) I update the theme, I will have to deal with this again.
If you have any other, more clever, suggestions, please do share.
Forum: Themes and Templates
In reply to: [Spun] [Theme: Spun] Responsive function behaves oddly.Apparently.
https://spun-demo.calobeedoodles.com/
Past 617px the menu is converted to a small text menu button.
Then at 600px something happens again. - Code.GS file with