Forum Replies Created
-
AuthorPosts
-
November 7, 2023 at 12:50 pm in reply to: Formatting & CSS in Child Theme Not Recognized After Update to Enfold 5.6.8 #1424914
Hi Ismael,
Sorry about that. You should be able to access the website now with the password that was provided. We currently don’t have an merging/compression enabled under the theme preferences. I have checked the agent pages in different browsers, cleared cache, etc. but still see the same issue.
RyanHi Ismael,
I spoke with WPCF7 support (see the link below) and they suggested deactivating Enfold, activating one of the default WordPress themes and deactivating all plugins except for CF7. I activated the Twenty Twenty theme and tested the pop-up/form with all the plugins active. When I did that, I could see the reCAPTCHA load on the home page and the test submission I did with the form in the pop-up worked with no issues.I included a link to the staging copy of the website that has Twenty Twenty active and you can see the reCAPTCHA at the bottom of the page. I can reactivate Enfold once you have had a look. But it does look like this is something to do with Enfold. If you can please look into it further, it would be appreciated. Thanks.
https://wordpress.org/support/topic/recaptcha-v3-not-working-in-popup/#post-17179056
November 6, 2023 at 1:59 pm in reply to: Formatting & CSS in Child Theme Not Recognized After Update to Enfold 5.6.8 #1424790Hi Rikard and Ismael,
We actually had to revert the theme on the live website back to the older version after discovering more issues. So the list items issue mentioned above is working now while we have the old version of the theme active.The new issue we are having is on travel agent pages their interview is displaying below their photo and contact info. It should be beside the photo and contact info. We have the theme updated to the latest version on our staging copy of the website and you can see a page with this issue linked in the private content.
I have tried a number of things in the CSS to fix the issue, but haven’t had any luck. Right now, the row layout for the space between the two columns is set to “Space between columns (6% – theme default). If I change that to a different % or “no space between columns”, both columns display beside each other again. However, the size of the column with the agent photo is not correct.
The other issue is if I need to fix this in the page template options, then it would be really time consuming since we have over 500 agents that have pages and each would need to be updated individuallly.
Could you have a look at the page below and let me know if there is something that can be edited or added in the CSS to fix the issue on all the pages?
Thanks.
The pop-up/form is on the home page.
https://businesstravel.maritimetravel.ca/
It is set to open only the first time you visit the website. So if you need to view it again, you will need to open a new private tab in your browser.November 2, 2023 at 3:26 pm in reply to: Formatting & CSS in Child Theme Not Recognized After Update to Enfold 5.6.8 #1424399Hi Rikard,
I have been able to address most of the issues, except for one. The dash shown in the screenshot below is not displaying for the list items in the blue area under the “HIGHLIGHTS” and “WHAT’S INCLUDED” headers on pages like this one:https://www.maritimetravel.ca/escorted-vacations/majestic-japan
Here’s the CSS that was being used and is now now being recognized:
.highlight-bullet li{list-style: none;} .highlight-bullet li:marker{content::'\e814' !important; font-family: "entypo-fontello";}
Here’s a screenshot of how the list should look:
https://www.maritimetravel.ca/wp-content/uploads/Example-of-Correct-List-Style.jpg- This reply was modified 1 year ago by NicomIT.
Thanks Rikard. We have a reCAPTCHA set-up and integrated with the plugin/forms. It loads fine on the forms we have that are on a normal page. But not for the pop-up.
September 5, 2023 at 9:41 am in reply to: How to sort custom post type posts with custom post meta field #1418135Hi Ismael,
Thanks for looking into this. in the code you have used is_paged function and in it you have used page id but the problem is that this site is in multilanguage with 2 sites in english and 1 in french and every page have different ids, so how to implement your code for each language. Secondly even if i used your way then i have to put 9 page ids and in future if same functionality is implemented in few other pages then I have to put the page ids of those pages in the given above function.
September 5, 2023 at 8:02 am in reply to: How to sort custom post type posts with custom post meta field #1418120Hi Ismael & Guenni007,
All the details given in private content, please go through and let me know how to solve my issue
https://www.maritimetravel.nicomitcms.com/wp-login.php
site password without admin login – maritimetravel2023September 4, 2023 at 3:02 pm in reply to: How to sort custom post type posts with custom post meta field #1418038Sorry Guenni007,
I forgot to give you the password as the staging site is password protected to prevent site from indexing to google. The password is maritimetravel2023. I have checked those pages with logged in condition.
staging site url: https://www.maritimetravel.nicomitcms.com/custom-escorted-vacationsSeptember 4, 2023 at 12:21 pm in reply to: How to sort custom post type posts with custom post meta field #1418024Hi Guenni007,
Thanks for your reply.
I have tried your code but it’s not reflecting the correct order as it should be. If you check the below link with the screenshots, you will find that i have already created two custom post meta fields with the help of ACF plugin, named journey_start_date & journey_end_date. Below is the modified code of yours that i have implemented.
add_filter( ‘posts_distinct’, ‘cf_search_distinct’ );
function pre_sort_filter_escorted_vacations($query) {
if(!is_admin() && $query->is_main_query()) {
$post_type = $wp_query->query[‘post_type’];
if ( $post_type == ‘escorted-vacations’) {
$query->set(‘meta_key’, ‘journey_start_date’);
$query->set(‘orderby’, ‘meta_value_num’);
$query->set(‘order’, ‘ASC’);
}
}
}
add_action(‘pre_get_posts’, ‘pre_sort_filter_escorted_vacations’);
If you want i can give ftp and admin credentials of our staging site.
September 4, 2023 at 9:52 am in reply to: How to sort custom post type posts with custom post meta field #1418017Hi Support,
journey_start_date & journey_end_date are the two custom post meta fields that we have created for CPT escorted-vacations and we want to displat the posts in ascending order with orderby journey_start_date, can you please help me regarding this.
September 4, 2023 at 9:50 am in reply to: How to exclude current posts from related posts grid #1418016Hi Mike & Guenni007,
journey_start_date & journey_end_date are the two custom post meta filelds that we have created for CPT escorted-vacations and we want to sort in ascending order with orderby journey_start_date, can you please help me regading this.
September 4, 2023 at 8:34 am in reply to: How to exclude current posts from related posts grid #1418008Hi,
Thanks Mike & Guenni007, for the help and support, it helped me a lot to solve the issue.
Please check my other issue that I have created long time but no body responded yet.
September 1, 2023 at 4:11 pm in reply to: How to exclude current posts from related posts grid #1417840Hi Support,
Is thee anyone to look into and solve my issue??
September 1, 2023 at 4:11 pm in reply to: How to sort custom post type posts with custom post meta field #1417839Hi Support,
Is thee anyone to look into and solve my issue??
August 31, 2023 at 12:30 pm in reply to: How to sort custom post type posts with custom post meta field #1417689Hi Ismael,
Not solved, please help to fix this.
August 31, 2023 at 12:29 pm in reply to: How to exclude current posts from related posts grid #1417687Hi Support,
Still not received any feedback regarding this from the support team.
August 29, 2023 at 8:59 am in reply to: How to exclude current posts from related posts grid #1417378Hi Support,
Still no response.
August 29, 2023 at 8:58 am in reply to: How to sort custom post type posts with custom post meta field #1417377Hello Ismael,
No response from you end, waiting for your feedback and to solve my issue.
August 28, 2023 at 9:51 am in reply to: How to sort custom post type posts with custom post meta field #1417308Hi Ismael,
Thanks for your reply. But I have used Custom Post UI to create custom post type named “Escorted Vacations”. In the below given link you can see how we have implemented those posts.
https://tinyurl.com/29trzjkxWe are not using Events Calendar plugin. So please give a detailed answer how can we achieve the goal we have asked here.
August 28, 2023 at 8:00 am in reply to: How to exclude current posts from related posts grid #1417300Hi Support,
Still not received any feedback regarding this from you end.
July 10, 2023 at 9:36 am in reply to: custom post type permalink change done, showing page not found #1412928Hi Rikard,
My issue has been solved, you can close this ticket.
Thanks to you and Nikko.July 7, 2023 at 10:15 am in reply to: custom post type permalink change done, showing page not found #1412683Hi Nikko,
Thanks for your help and effort. it seems that i have written correct code but in the regex expression i put ^([^/]*)/([0-9]{5})/([^/]+)? this but when checking agent url I was checking agents with agent id of 4 digits so I was getting page not found error never checked agents urls with 5 digits agent id, when you mentioned the above urls then only it strike into my mind. Now that I have changed the regex expression it is working fine.
But never the less thanks for your help and effort to give valuable time in this to solve my problem.
Thanks a lot again and have nice weekend.- This reply was modified 1 year, 4 months ago by NicomIT.
July 5, 2023 at 1:06 pm in reply to: custom post type permalink change done, showing page not found #1412508July 4, 2023 at 11:42 am in reply to: custom post type permalink change done, showing page not found #1412407Hi Nikko,
Sorry, it didn’t help me, once disabling custom 404 page it is going to default page not found situation.
June 12, 2023 at 10:11 am in reply to: my custom post type “branches” posts not showing any details of that post #1410313Hi Support,
Is there anyone who can solve my above mentioned existing issue?
May 23, 2023 at 5:24 pm in reply to: my custom post type “branches” posts not showing any details of that post #1408310Hi Nicco,
https://www.maritimetravel.nicomitcms.com/branch-details-new/?bid=10
This page is custom generated, just created a template file copying the full code from template-builder.php file just named template as Branch details, then created a page admin selecting banch details as template then create short codes in functions.php file and put those short codes in alb text block elements.necessary info of the branches we are getting by id we are sending as paameter in the url
if you go through the code you will find what has been done
- This reply was modified 1 year, 5 months ago by NicomIT.
May 23, 2023 at 8:32 am in reply to: my custom post type “branches” posts not showing any details of that post #1408226Hi Nicco,
Thanks for the update, I have worked with shortcodes but the problem is that I can’t make it in with ALB, i have short oces infunctions.php file and put the those in one of the page but I have to use the url like this https://www.maritimetravel.nicomitcms.com/branch-details-new/?bid=10, sending id as parameter to fetch that branch details, this url can’t be used for seo and secondly i can’t show branches details the way I want to show. If you can take some time to find a way to implement what I want that will be grateful.
https://www.maritimetravel.nicomitcms.com/branches/prince-rupert/ —> this is how you have shown details, thank you very much for this.
But i want to show above url details like this https://www.maritimetravel.nicomitcms.com/branch-details-new/?bid=10Please help me to solve my issue.
May 22, 2023 at 3:05 pm in reply to: my custom post type “branches” posts not showing any details of that post #1408148Hi Nikko,
Thanks for help and your effort, but i still have this issue because i want to implement this with the help of Avia layout builder so that look and feel of the site remains same. For this reason i created a page with custom template file and copy the full code of template-builder.php and named it as Branch Details, then created fucntions for each data with the help of add short code function and implemented those short codes in avia layout builder elements. If you click on this link https://www.maritimetravel.nicomitcms.com/our-locations/ and click on any branch title or branch details link you can find that each branch is opening with parameter ( as bid) attached, i m using that id to open each branch and to show its’s details. But this url is not seo friendly and so i want to show each branch details like i m showing right now but with url https://www.maritimetravel.nicomitcms.com/branches/prince-rupert/ like this.
If you help me in this i will very much grateful to you.
May 22, 2023 at 8:06 am in reply to: my custom post type “branches” posts not showing any details of that post #1408110Hi Nikko,
Sorry for the mistake, please follow the below given details
-
AuthorPosts