Forum Replies Created
-
AuthorPosts
-
Same here on a onepager website with a Google Maps at the bottom. The site seems to load correctly but then “jumps” down to the section where the map is (upon dropping the pin on the map, I assume).
Removing the Google Maps widget from the builder, results in a normal behaviour again…
Google Maps is enabled at the Google Services widget of the theme options, key is accepted (successful verification)…WP 5.7.2
Enfold 4.8.3
PHP 7.4.18Hi Dude,
Thanks for the solution. The page is “noindex” but still these strange URLs appear in the Alexa SEO tool my customer likes to use. Any idea what the reason is for this & more, how to avoid that?
https://www.domain.com/?s=no-results:no-results:no-results:no-results:no-results:no-results:no-results:no-results:{search_term_string}
https://www.domain.com/?s=no-results:no-results:no-results:no-results:no-results:no-results:no-results:no-results:{search_term_string}&cat=1-result
https://www.domain.com/?s=no-results:no-results:no-results:no-results:no-results:no-results:no-results:no-results:{search_term_string}&cat=2-5-results
https://www.domain.com/?s=no-results:no-results:no-results:no-results:no-results:no-results:no-results:no-results:{search_term_string}&cat=no-results
https://www.domain.com/?s=no-results:no-results:no-results:no-results:no-results:no-results:no-results:no-results:{search_term_string}&cat=plus-5-results
https://www.domain.com/fr/?s=no-results:no-results:no-results:no-results:no-results:no-results:no-results:no-results:{search_term_string}
https://www.domain.com/nl/?s=no-results:no-results:no-results:no-results:no-results:no-results:no-results:no-results:{search_term_string}Best regards,
JurgenHi Ismael,
I deleted all partner logo’s and added them again, now it is working in the other languages too. Thanks!
This topic can be defined as “solved” :-)
Best regards,
JurgenHi Ismael,
Thanks for checking out!
I did a few overwrites via my child theme but these are WooCommerce related…
Please find the FTP credentials in the private part of this post. You can do whatever is needed to resolve this issue, but please don’t start playing around like crazy as this is actually a live environment :-)
Best regards,
JurgenHi Vinay,
As I said:
– I deactivated all plugins and accessed the “translated” pages via their normal slug: no issue
– I re-activated “WPML Multilingual CMS” (only that plugin of all WPML related plugins): the issue is backSo there must be something between Enfold & WPML itself because I already deleted these folders and re-uploaded fresh copies of Enfold and all WPML plugins. As Enfold is WPML compatible, it should work, right…
Best regards,
JurgenHi Vinay,
- We already are on PHP (7.0.28)
- WP memory limit already is 768M
- Enfold theme directory already deleted and re-uploaded without success (cfr feedback above)
Please advise what to do next, downgrade / … ?
Best regards,
JurgenHi Vinay,
This is what I have done:
– I cleared all cache: same issue.
– I used a browser that is configured not to save any cookies / temp data: same issue.
– I delete the “enfold” directory from the themes and re-uploaded a freshly downloaded copy from ThemeForest: same issue.
– I deleted all WPML related plugins and re-uploaded freshly downloaded copies from wpml.org: same issue.
– I deactivated all plugins and accessed the “translated” pages via their normal slug: no issue
– I re-activated “WPML Multilingual CMS” (only that plugin of all WPML related plugins): the issue is backThe issue popped up for the first time upon updating the Enfold theme, so there must be something going wrong between Enfold and WPML…
Please advise how to solve this
Best regards,
JurgenHi Victoria,
That’s done & I can see the extra box when editing a page, so you can continue checking this issue :-)
Best regards,
JurgenHi Victoria,
I added the credentials in the private part of this message. You can do whatever is needed to identify the issue, but please remember this is a live webshop so please don’t go crazy on the website :-)
Thanks for checking!
Best regards,
JurgenHi Victoria,
Thanks for checking this issue!
For example the “Design webshop” button on the homepage (the block between the logo’s and the social media streams. This has been set to “align center” for the button position but as these CSS classes are not known (cfr the code comparison link above)…
I can add these CSS instructions too, but I think you should know that a lot of code has disappeared / moved (but not loaded)…
Best regards,
Jurgen- This reply was modified 6 years, 8 months ago by Jurgen. Reason: location of button (homepage) was missing
I am just saying that there seems to be a CSS issue in the latest version of Enfold (just detected that on a webshop of mine, cfr the other topic). That’s information for the moderators / developers as a lot of issues are related to 1 problem that will probably need a fix…
There seems to be a major CSS issue (either statements have been moved and files are not loaded or some statements have been deleted by incident). I just found out for my “button” and your “iconbox” is there too!
https://kriesi.at/support/topic/css-issue-shortcodes-css-by-theme/ (I compared the both files in an earlier vs. latest version)…
Best regards,
JurgenHi,
Do you have any idea when we may expect an update to Enfold that will tackle this issue? Thanks!
Best regards,
JurgenI created a temporary admin user (see private comment). You can debug as needed but as this is a live environment, please keep me posted if you should change something that I need to revert later on. Thanks!
URL to the product of the screen shots: https://www.jilko.be/shop/pedal-bin/nova-pedal-bin/
Hi Mike,
Yes you can do that :)
Best regards,
JurgenHi Ismael,
Thank you so much for helping me out on this!! I just added modified the order so the tagged posts are as well sorted by newest first.
For others reading this topic, this is the final code :-)
function rr_sort_by_tag($query, $params) { if( is_page( array( 724, 3661, 3662 ) ) ) { $include = array(); $first = array(); $tagged_args = array( 'meta_key' => 'tag_field', // 'orderby' => 'meta_value', // 'order' => 'ASC', 'orderby' => array( 'meta_value' => 'ASC', 'post_date' => 'DESC', ), 'meta_query' => array( array( 'key' => 'tag_field', 'value' => array( 'case', 'another' ), 'compare' => 'IN', ), ), 'posts_per_page' => -1 ); $tagged = get_posts( $tagged_args ); foreach($tagged as $tag) { $first[] = $tag->ID; } $new = array( 'post__not_in' => $first ); $new = array_merge($query, $new); $posts = get_posts( $new ); foreach($posts as $post) { $include[] = $post->ID; } $include = array_merge($first, $include); // convert values of the $include from string to int function sti($n) { settype($n, 'int'); return $n ; } $include = array_map("sti", $include); $query['post__in'] = $include; $query['orderby'] = 'post__in'; // sort items based on the post__in value } return $query; } add_filter('avia_masonry_entries_query', 'rr_sort_by_tag', 10, 2);
Hi Ismael,
Please check the information in the private part to investigate this.
Best regards,
JurgenHi Ismael,
Thank you for the code!
Unfortunately I only see 6 or 7 posts while there are 30 posts. The posts with a custom field “tag_field” (I mentioned this for 2 of my posts) do appear first but I need them all to appear… When I switch to the 2nd and 3rd language I only see the posts with the custom field, and none of the others (while in English I do see a few)…
I assume we are almost there… Thanks again!
Best regards,
JurgenHi Ismael,
So then I should do something like this: create a custom field for each post (for example “tag”) and then sort on this field with some code like this? How about the sort per tag, can this be newest first?
add_filter('avia_masonry_entries_query', 'rr_sort_by_tag', 10, 2); function rr_sort_by_tag($query, $params) { if(is_page(array(724, 3661, 3662))) { $query['orderby'] = "meta_value"; $query['metakey'] = "tag"; $query['order'] = "DESC"; } return $query; }
Thanks!
Hi,
Thanks for your reply!
I tried the code below, but no success… I tried both “post_date” and “date” but not difference…
add_filter('avia_masonry_entries_query', 'rr_sort_by_tag', 10, 2); function rr_sort_by_tag($query, $params) { if(is_page(array(724, 3661, 3662))) { $query['orderby'] = array( 'tag' => 'ASC', 'post_date' => 'DESC' ); } return $query; }
Thanks for checking!
Best regards,
JurgenHi Victoria,
This is the back end of the page. As you can see, the color section got an ID.: https://postimg.org/image/w0skez3zj
The full width submenu contains links to the sections of the page (= anchor hrefs). On laptop all goes fine (screen shot with OS X Safari – you can see the anchor I clicked on in the address bar => #isolatie): https://postimg.org/image/t7zcuy3n3
On iPhone (Safari iOS X) the main & sub menu are not sticky, which is acceptable. The section goes fine: https://postimg.org/image/y7wt2w99r
On iPad (Safari iOS X) both menus are sticky but the section is not showing as it should be: the title is behind the menu, so the anchor positioning is going wrong there: https://postimg.org/image/vf3liv8xb .
Hopefully you understand my issue now :o)
Thanks for checking & best regards,
JurgenHi Victoria,
Unfortunately that does not solve the positioning issue and it even makes it worse as the title is now “behind” the header on all pages. Screen shot from homepage: https://www.dropbox.com/s/ilt368k0kqfzwjl/2017-03-28%2014.58.47.png?dl=0 . I removed the CSS instructions again.
The solution I am looking for is for the anchor positioning, as explained in my initial post.
Thanks for checking & best regards,
JurgenHi Victoria,
Thanks for checking. In the mean time, the site is live via https://www.debackerkristof.be …
Please find the credentials below to investigate (but be careful as this is a live website).Best regards,
JurgenHi Andy,
It’s WP standard (check my WP Codex link).
Thx for making it work in a similar way with Enfold.Best regards,
JurgenHello,
If a theme doesn’t set up a fallback then yes it will happen there too as a few browsers are not supporting .webm (yet) => http://caniuse.com/#feat=webm . Testing this for another theme is not relevant for this issue.
WordPress core do handles this by fallback: https://codex.wordpress.org/Video_Shortcode (but the video background is an Enfold feature which should handle this correctly).
Please handle this for a future theme update as it works for WP, but not as Enfold does this.
Best regards,
JurgenHi Andy,
Thanks for checking. I did not read every word on that page but it’s not an option to ask the visitors to install a plugin / download the movie and let them watch it in VLC or something. The movie should be playing as background video…
I think it makes perfect sense that the theme would handle the fallback by using something like the <source> tag or would serve the right file automatically, based on known browser support…
Best regards,
JurgenHello,
This is the (almost live) environment: http://ringringbea1001.lin6.nucleus.be . The question is about the “landing” part on the homepage (the texting woman). Currently the mp4 has been configured so it works but it could be better if the webm would be taken first.
Yes Safari is up to date (10.0.3 on OS X Sierra).
Thanks for checking!
JurgenHi Andy,
I have uploaded both files:
– /wp-content/uploads/2017/02/ringring-landing.webm
– /wp-content/uploads/2017/02/ringring-landing.mp4I mentioned the .webm file as video background of the color section and added the mentioned .htaccess instructions but it still doesn’t work in Safari (Firefox & Chrome play the webm file, IE not tested). I think there is a dot missing in the code at the linked page but that does not solve it…
I now selected the mp4 file again and that works (but that file is bigger so I prefer to find a solution)…
Best regards,
JurgenJanuary 10, 2017 at 10:43 pm in reply to: Remove title appearing when hovering on masonry (alt look, not the popup) #731753Hi Yigit,
Works like a charm :-)
#solved
Best regards,
Jurgen -
AuthorPosts