Yaniv
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Can't see my formsWPML is indeed the culprit. Disabled all 3 WPML plugins, and my forms appeared. I re-enabled WPML CMS and WPML String Translation (I wasn’t using the third one anyway), and my forms are still there BUT any new forms created are hidden like before. I have to disable and re-enable the WPML plugins in order to see the new forms.
After some digging around, it was this:
In the WPML Translation Setting, under “Custom Post Types” I chose “Do Nothing” for CF7 Forms.Thank you very much, and also thanks to this guy:
https://www.ads-software.com/support/topic/form-is-missing-in-list-of-forms-but-still-workingForum: Plugins
In reply to: [Contact Form 7] Can't see my formsAlso, I tried removing CF7 and re-installing it. The form that comes with it is there, but every new form I add doesn’t show up in the CF7 admin page.
Forum: Plugins
In reply to: [Contact Form 7] Can't see my forms- Coatings Post Type (Custom plugin I wrote that handles specific custom post type)
- Contact Form 7
- Revolution Slider
- WordPress SEO (Yoast)
- WP-Optimize
- WPML Multilingual CMS
- WPML String Translation
- WPML Translation Management
Forum: Plugins
In reply to: [WP Code Prettify] Long lines are wrappedThank you! That did the trick!
Forum: Plugins
In reply to: [WP Code Prettify] Long lines are wrappedI did that, but it caused the 3 lines to be one very long line…
Forum: Plugins
In reply to: [WP Code Prettify] Long lines are wrappedCheck out this page:
https://www.ravellosystems.com/blog/android-emulator-on-amazon-ec2-and-google-cloud/The last code example (search for DISPLAY=localhost:2 on the page) should be three lines. I would like to have horizontal scrolling, instead of the word wrap.
I use Chrome, but the solution should be cross-browser…
Thanks!
Forum: Plugins
In reply to: [WP Code Prettify] Long lines are wrappedI tried a combination of these CSS properties, but I didn’t manage to create the behavior I want.
I tried
overflow-y: scroll;
andwhite-space: nowrap;
but that only works for one line of code. Once there are more than one line, it ignores the line breaks and creates one very long line of code.Hi David,
Thanks for your reply. Infortunately, I cannot give you access to the admin. Is there any other way of handling this?
Thanks,
YanivHi David,
I tried this out – I copied the JS relevant to the popover button click to the popup core JS file you stated. I did this on our development site:
https://site-sitedev41113bpi-pwii0f84.srv.ravcloud.com/blog/wp-content/plugins/wordpress-popup/popoverincludes/js/popover-load.jsBut this didn’t fix the issue… What am I missing?
The popup has an HTML form with a submit button. When clicked, some JS (on a separate JS file) does some AJAX. The click event is binded with jQuery.
The is exactly what’s not happening i “External Load” mode.
Unfortunately I can’t provide a link to the site that has the issue because it’s on a development site.
I can provide a link to the production site, on which the popup is running on “Page Footer” mode.
https://www.ravellosystems.com/blog/using-red-hat-satellite-bootstrap-environments-ravello-aws-ec2/The code running the AJAX code for the submit can be found in ravello.js (look for it in the page source, it’s in the head).
Hi David,
Here’s the requested screenshot:
https://dl.dropboxusercontent.com/u/17133455/popover-settings.jpgThanks,
YanivThanks for your reply! The culprit is the Facebook Comments by Fat Panda plugin. Once deactivated, the map is all fine (except for the +/- zoom buttons in the top left corner which don’t work). Thing is I tried installing a different plugin for Facebook comments (SEO Facebook Comments) and it also made the map dysfunctional. Finally installed Facebook Comments Notifier and now the comments and map play nice.
I’m using the LesPaul! theme. “Also display in archives” is not checked.
I thought there’s a way to disable the widget on the homepage from the back-end, but I ended up hiding it with CSS.
Thanks!
This is what I needed:
add_filter( 'pre_get_posts', 'my_get_posts' ); function my_get_posts( $query ) { if ( is_front_page() && false == $query->query_vars['suppress_filters'] ) $query->set( 'post_type', array( 'post', 'event' ) ); return $query; }
Yes! That did the trick! BUT! That made my navigation menu disappear. I found this fix on Stack Overflow (adding $query->is_main_query() and replacing add_filter with add_action). The menu reappears but the events aren’t showing on the blogroll.
function my_get_posts( $query ) { if ( is_front_page() && $query->is_main_query() ) $query->set( 'post_type', array( 'post','event' ) ); return $query; } add_action( 'pre_get_posts', 'my_get_posts' );