b...b
Forum Replies Created
-
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Load OK, scroll not workingSame issue. After update all stopped working and got no pics, only white screen. Restored site from backup. Background pic is back, but no slides are showing.
Also no JS errors showing.
Forum: Themes and Templates
In reply to: [Vega] Add Search to header menuthanks @saurabhdhariwal … it works.
I would like adjust it some and make a search icon that expands when clicked. Similar to what is used on this site when logged in.
Forum: Themes and Templates
In reply to: [Vega] Remove menu tooltipThanks.
Forum: Plugins
In reply to: [MailChimp Forms by MailMunch] Forms no longer workingI got the forms to work.
Minify from W3TC was interfering.
Changed the W3TC settings:
Minify mode: Manual
Minify cache method: Disk
HTML minifier: Minify (Default)
JS minifier: Goolge Closure Compiler (Web Service)
CSS minifier: Minfy (Default)Hi Greg,
Thanks, its working now.
I turned off the W3TC minify. This worked and the share buttons came back, but my page load time doubled.
I got the share buttons to work with minify enabled with these W3TC settings:
Minify mode: Manual
Minify cache method: Disk
HTML minifier: Minify (Default)
JS minifier: Goolge Closure Compiler (Web Service)
CSS minifier: Minfy (Default)I also had MailMuch forms stop working. These changes also fixed the MailMunch forms.
🙂
I would like to try to get the Shareaholic plugin working again.
I was hoping after all of the recent updates it would start working again. No luck.
I especially like the related content.
I have reactivated the plugin and currently have share buttons selected for below index and below post.
Index: https://www.currentinspiration.com/dose-of-inspiration/
A Post: https://www.currentinspiration.com/feed-your-soul/announcing-the-new-cultivate-your-life-app/For cache, I recently switched from WordFence Falcon to Yoast’s W3TC. I also use CloudFlare. But I have been using CF for a long time with Shareaholic working correctly.
My newest addition is W3TC. Tried clearing all caches. Still no luck
Forum: Themes and Templates
In reply to: [Vega] Remove menu tooltipShould I try removing function.php code after the next update?
Forum: Plugins
In reply to: [MailChimp Forms by MailMunch] Forms no longer workingI submitted a ticket from the plugin contact support link.
Forum: Themes and Templates
In reply to: [Vega] Remove menu tooltipI am using code to show fa icons on my menu.
e.g. Navigation Label: <span class=”fa fa-home” aria-hidden=”true”></span> Home
That code works to show the icon but, was also showing as text for the tool tip.
The solution above was the only way I could figure out to remove the tool tip.
Forum: Themes and Templates
In reply to: [Vega] Remove menu tooltipFantastic…
Forum: Themes and Templates
In reply to: [Vega] Remove menu tooltipHi autohimarius,
I struggled with removing the tooltips, tried altering the menu attributes as well as. a plugin. No success.
What finally worked for me is creating a child theme, then adding this code to the new functions.php file located in: public_html or www / subfolder if you use one /wp-content/themes/vega-child
code:
<?php add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); function my_theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } function my_menu_notitle( $menu ){ return $menu = preg_replace('/ title=\"(.*?)\"/', '', $menu ); } add_filter( 'wp_nav_menu', 'my_menu_notitle' ); add_filter( 'wp_page_menu', 'my_menu_notitle' ); add_filter( 'wp_list_categories', 'my_menu_notitle' ); ?>reference: http://wordpress.stackexchange.com/questions/23469/disabling-tooltip-on-menu-items
Forum: Plugins
In reply to: [MailChimp Forms by MailMunch] Forms no longer workingSounds good. How do I open a ticket?
Forum: Plugins
In reply to: [MailChimp Forms by MailMunch] Forms no longer workingSorry for the late reply.
The plugin is activated. I took it off the home page because it is not working.
I still have it on the blog index sidebar widget here: https://www.currentinspiration.com/dose-of-inspiration/It is the top widget. It only show the title Subscribe. The form does not show.
Forum: Themes and Templates
In reply to: [Vega] Move menu items to right for mobileThanks for the css to adjust the CTA section. I wanted to keep the larger logo. I was able to align the menu text to the right for smaller screens using:
@media (max-width:767px){
.navbar-custom {
width: 100%;
text-align: right;
}
}Forum: Plugins
In reply to: [Cloudflare] Wp-Admin not working with HTTPSI think I got it.
Set site url and wordpress url to http://boundforbliss.net
Switched to plugin: CloudFlare Flexible SSL
Added plugin: SSL Insecure Content Fixer
Turned on CF page rule: http://*boundforbliss.net/* – Always Use HTTPS.Seems to be working. 🙂
- This reply was modified 9 years, 6 months ago by b...b.