Matthew
Forum Replies Created
-
Never mind.. I found it.. in advanced/responsive you can choose which modes to display a section. I had hidden the section in all modes.
I did learn something else as well.. and that’s that the folks who produce elementor are pretty lax when it comes to response time on the free which discourages me from purchasing the pro version. I also learned that the RECAPTCHA integration on the contact form that elementor provides is only available on the Pro version. I find that to be low class. Pro should provide value added… and not essential features.So I found the eye icons on through the navigation icon at the bottom but all that does is make the section display or hide in the elementor editor. it does not affect it’s appearance to visitors. Would really appreciate some help here.
Forum: Themes and Templates
In reply to: [Neve] How to hide and unhide sectionsWell, I found that area but am confounded further. Clicking on and off the eye icon makes that section appear and disappear in the Elementor editor. When I opened it, the eye for this section was on “visible” because when I clicked it… it disappeared in the editor.
I have been able to see that section (the page that displays the posts) in the editor all along. What I was able to do previously, (I don’t know how) was to hide it on the rendered page but keep it visible in the Elementor Editor of the home page (where it should display between the About Me section and the FAQ section.
Any thoughts?
- This reply was modified 7 years, 4 months ago by Matthew.
Forum: Themes and Templates
In reply to: [Neve] Can’t add Recaptcha to contact formThanks.. I’ll see if I can use Contact Form 7 with it. I’ll be damned if I’m going to pay $41 for only one website just so I can incorporate Recaptcha into the contact form. I don’t mind paying for value added but really take issue with free programs that don’t at least provide the essentials.
Love your theme though… It’s the best I’ve seen in a while.So, are you saying that the only way to incorporate Recaptcha into my contact form using Elementor is to purchase the Pro version?
Forum: Plugins
In reply to: [Contact Form 7 reCAPTCHA Extension] Problem solved! reCAPTCHA not showingI re-registered my site with v3 of Recaptcha. Now, do I still need to add the [recaptcha] code to my contact form? I still don’t see the button for it. There used to be a button i could click to add recaptcha to the Contact Form. Really would like to get some clear direction on this. I’m getting a LOT of spam.
Forum: Themes and Templates
In reply to: [Neve] Can’t control divsthose media icons are not in my media file. Never were to my knowledge. If I look at the HTML code for those icons.. it appears that those icons were located on themeisle.. and not on my server. It directs to:
demo.themeisle.com/neve/wp-content/uploads/sites/164/2018/10/neve-facebook.png”
for the facebook icon for example- This reply was modified 7 years, 4 months ago by Matthew.
- This reply was modified 7 years, 4 months ago by Matthew.
- This reply was modified 7 years, 4 months ago by Matthew.
- This reply was modified 7 years, 4 months ago by Matthew.
- This reply was modified 7 years, 4 months ago by Matthew.
- This reply was modified 7 years, 4 months ago by Matthew.
- This reply was modified 7 years, 4 months ago by Matthew.
Forum: Themes and Templates
In reply to: [Neve] How to install RSS new feed on blog?Here is a link to an image of the issues at hand.
Editing IssuesForum: Themes and Templates
In reply to: [Neve] How to install RSS new feed on blog?Further… sometimes when I create a new page or post, I get one kind of tool bar with the Feedzy RSS icon and other icons and sometimes, it displays a very limited tool bar and I can’t figure out how to change between the two. It’s getting very frustrating indeed.
Forum: Themes and Templates
In reply to: [Neve] How to install RSS new feed on blog?Thanks for helping me resolve the Flexia thing. Apparently when I was looking for a theme to use, I installed it in addition to Neve and it also included a plugin I didn’t remember installing. I’ve deleted it and the theme and now it’s gone so all I have left is the Neve theme which I was and am using. Not sure why you got a 403 error on the link I gave.. must have been something temp as I got it just fine at
https://hypnotherapy-directory.org/hypnotherapy-nlp-news/So here is my problem, When I add a new page or post and click on the Feedzy RSS feed icon, it opens up the window.. not with the Feedzy set up page but instead the popup window displays my dashboard and nothing i do will change it to the Feedzy setup page. I can send you a screen shot if you need it
Forum: Themes and Templates
In reply to: [Neve] How to install RSS new feed on blog?When I select ADD to a post, before I click on “Edit with Elementor” there is text indicating “Flexia Post Settings” with a lot of settings I can change below it. One however is “Post Layout” and that indicates “Default (from Customizer).
You can see how I am currently using RSS feeds on some of my other websites. Here for example: https://hypnotherapy-directory.org/hypnotherapy-nlp-news/
Nothing fancy… just an RSS feed that provides relevant content. I’m trying to have one of the Categories be this content stream while another will be for articles I write. Just don’t know how to do it with Elementor.Forum: Themes and Templates
In reply to: [Neve] How to change image on contact formThanks Rodica…. very helpful with the screen shot. Much appreciated.
Forum: Plugins
In reply to: [WP Job Manager] Complete addresses not displayedWell, this is getting more interesting by the moment. To answer your questions, most listings were entered through admin backend however it doesn’t seem to matter. I tried both ways and it’s the same. I can also confirm that all the geocoding on the listing page is identical on both sites… and, as I said earlier, the map does show complete addresses… just not the listings.
However, now looking at the admin “all listings” (I renamed them Practices), on the site that does display the complete addresses, those street addresses display on that listings page. However on the directory that only shows the regions, only the primary region display on the “all listings” page under Location.And here’s something else that really has me scratching my head. I looked at the functions.php in Appearance Editor on both sites and found them to be different but I don’t recall editing them. Further, when I paste the code from the correct site to the one only showing regions, nothing changes regarding the addresses anyway. Since I basically cloned all my directories from the first one I did, I don’t know why one site would have a different functions.php code. Here are the two different function.php codes. My ability stops at the water’s edge of code sadly so I don’t know exactly what the differences mean.
I checked the two links and neither seem to apply in this situation.
From the site that is not displaying addresses<?php
/**
* Listify child theme.
*/
function listify_child_styles() {
wp_enqueue_style( ‘listify-child’, get_stylesheet_uri() );
}
add_action( ‘wp_enqueue_scripts’, ‘listify_child_styles’, 999 );/** Place any new code below this line */
/* Enable shortcodes in widgets */
add_filter(‘widget_text’, ‘do_shortcode’);add_filter( ‘listify_cover_image’, function( $image ) {
if ( is_singular( ‘post’ ) ) {
return false;
}return $image;
} );—————————————-
From the site that IS listing addresses correctly:
<?php
/**
* Listify child theme.
*/
function listify_child_styles() {
wp_enqueue_style( ‘listify-child’, get_stylesheet_uri() );
}
add_action( ‘wp_enqueue_scripts’, ‘listify_child_styles’, 999 );/** Place any new code below this line */
/* Enable shortcodes in widgets */
add_filter(‘widget_text’, ‘do_shortcode’);add_filter( ‘submit_job_form_fields’, ‘custom_submit_job_form_fields’ );
function custom_submit_job_form_fields( $fields ) {$fields[‘job’][‘job_description’][‘required’] = false;
// And return the modified fields
return $fields;
}add_action( ‘wp_footer’, function() {
?><script>
jQuery(function($) {
var $window = $(window).outerHeight();
var tb = ( $window – $( ‘.homepage-cover’ ).height() ) / 2;
console.log($window);
$( ‘.homepage-cover’ ).css({
‘padding-top’: tb,
‘padding-bottom’: tb
} );
} );
</script><?php
} );———————–
I greatly appreciate the help
Forum: Plugins
In reply to: [WP Job Manager] Complete addresses not displayedTo be more accurate, the listing that doesn’t show the address, shows the regions that have been checked… not the actual city and state. Weirder still.
