vmiluk
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Id on drop-down menu/select inputThank you so much! That was the fix. I had tried it at the end and after the type but not after name.
Forum: Plugins
In reply to: [Translate WordPress - Google Language Translator] Removing flags entirely?We have to put them through a review with our security department. Unfortunately, GTranslate has had too many recent vulnerabilities to be able to pass that review.
What I was looking for was an answer if they can be removed out of the box, not with customization. I am a little confused as to why there is a box to check or uncheck to show flags if there really is no way to remove flags.
Thanks for your answer, confirming that there is no way to remove the flags without plugin customization.
Forum: Plugins
In reply to: [Translate WordPress - Google Language Translator] Removing flags entirely?Unfortunately, GTranslate is not on our approved list to use. So you are confirming that there is no way to remove flags in the Google Language Translator?
Forum: Themes and Templates
In reply to: [Vega] Mobile menu not staying openI’ll give that a try. Thanks so much for helping!
Forum: Themes and Templates
In reply to: [Vega] Mobile menu not staying openThat was the culprit! That’s annoying. Do you know of any accordion plugins that don’t cause this issue with the Vega theme? I’m happy to propose a change to the users if you do.
Forum: Themes and Templates
In reply to: [Vega] Mobile menu not staying openThanks for responding!
My functions.php file has this, and I think I got the entire file from this forum.
add_action( 'wp_enqueue_scripts', 'vega_child_enqueue_styles' ); function vega_child_enqueue_styles() { $parent_style = 'vega-wp-style'; $deps = array('bootstrap', 'font-awesome', 'bootstrap-social'); wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' , $deps); $vega_wp_color_stylesheet = vega_wp_get_option('vega_wp_color_stylesheet'); wp_enqueue_style('vega-wp-color', get_template_directory_uri() . '/color-schemes/' . strtolower($vega_wp_color_stylesheet) . '.css', array() ); wp_enqueue_style( 'vega-wp-style-child', get_stylesheet_directory_uri() . '/style.css', array( $parent_style, 'vega-wp-color' ), wp_get_theme()->get('Version') ); }If I remove bootstrap from this, then the entire menu breaks. I’m not sure what I’m missing (it makes sense though, what you’re saying) or how it would need to be modified to not include Bootstrap twice.
Forum: Themes and Templates
In reply to: [Vega] Featured image not showing upNevermind. I kept browsing the support topics and found this one: https://wordpress.org/support/topic/created-child-theme-for-vega-banner-breaks-on-menu-creation/
I am now using the sample functions.php file from the Github repository and it’s working great!