pelukho
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Right way to enqueue programatically?Hey. You can add condition
if ( is_page_template( 'your_custom_page_template.php' ) ) { wp_enqueue_your_style_and_scripts }in your wp_enqueue_scripts action- This reply was modified 5 years, 1 month ago by pelukho.
Forum: Developing with WordPress
In reply to: Advanced Custom Fields on Archive PageHello. Probably it is because this function
get_post_ID()not native in wp, maybe you needget_the_ID()? – it return the id of the postForum: Fixing WordPress
In reply to: Portfolio Slideshow doesn’t workHi. It looks, that you didn’t activate your Portfolio slideshow plugin
- This reply was modified 5 years, 1 month ago by pelukho.
Forum: Everything else WordPress
In reply to: Ahrefs: Self-reference hreflang annotation missingTry to find and enable this option in WPML https://i.imgur.com/mK4zZib.png
wpml – > Languages – > SEO Options
- This reply was modified 5 years, 1 month ago by pelukho.
Forum: Everything else WordPress
In reply to: Ahrefs: Self-reference hreflang annotation missingHi. It means that you don’t have alternale links like that:`<link rel=”alternate” hreflang=”en” href=”yoursite.com” />
<link rel=”alternate” hreflang=”de” href=”yoursite.com/de” />` in head section- This reply was modified 5 years, 1 month ago by pelukho.
Forum: Fixing WordPress
In reply to: Recoverable fatal error after moving from other ServerIts very hard to find out the reason without debugging, but in md5() on line 228 should be option siteurl
get_site_option( 'siteurl' )maybe this call an error – you should look what this function returs. Try to look in the log file if you haveForum: Everything else WordPress
In reply to: Redirect errorHello. Could you see in AHREFS report from what page you have this problem? Probably it could be, that you have a link on your site with www
Forum: Fixing WordPress
In reply to: Recoverable fatal error after moving from other ServerHello. What version of wp do you use?
It looks like some part of code has error before printing it. Could you provide full description of the error with stack trace
Forum: Plugins
In reply to: [Contact Form 7] Uncaught TypeError: Cannot read property ‘into’ of null@takayukister I found what the problem was ( in my case), the mail() function was disabled on the server
Forum: Plugins
In reply to: [Contact Form 7] TypeError: Cannot read property ‘into’ of nullI found what the problem was, the mail () function was disabled on the server
Forum: Plugins
In reply to: [Contact Form 7] Uncaught TypeError: Cannot read property ‘into’ of null@takayukister Hi. I have the same issue on my site
http://prntscr.com/m521hu
http://prntscr.com/m521qgI looked in the developer console, form is sent data, but there is no answer. data variable is null in ajax.
I turned off the plugins, but the result was the same, of course I can’t change the theme. Where should I look? Could there be a problem in the server?
Here is a solution for my case:
https://github.com/zzinsidezz/add-to-cart-ajax-action-fix/blob/master/add_to_cart.php
@alexminza Hey. I had the same issue on my project. I made a revision for this problem, and if it is actualy for you I can with solution of my problem