jjlorentz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Eight Sec] Adding a extra pageI mean a custom link on the menu. The problem I am having is the new menu item will only show when the one-page layout is not active.
Forum: Plugins
In reply to: [Hustle - Email Marketing, Lead Generation, Optins, Popups] Resizing Slide-in@wpmudev-support6 I got it to work for now by:
1. paste in the code
2. save without using the preview
and then repeating step 2 until it works took 4 times for me.3. once it worked I exited the tab and have not reopened
Forum: Themes and Templates
In reply to: [Tasman] Change Header imageIt should be in one of two places.
1. The quick edit bar on the left
2. The Internal stylesheetForum: Plugins
In reply to: [Hustle - Email Marketing, Lead Generation, Optins, Popups] Resizing Slide-inThank you
Forum: Plugins
In reply to: [Hustle - Email Marketing, Lead Generation, Optins, Popups] Resizing Slide-inIs there a way to stop it from trying to format like that?
Forum: Plugins
In reply to: [Hustle - Email Marketing, Lead Generation, Optins, Popups] Resizing Slide-inSpecifically, if the code is saved then I hit the preview it works, but if I navigate to another part of wp then come back it is different.
Forum: Plugins
In reply to: [Hustle - Email Marketing, Lead Generation, Optins, Popups] Resizing Slide-inI have added the changes to the code, however, it still breaks after using the text. Same issue as before it ads <p> tags around iframe holder var.
No Problem @leadology
Try this here:
hereThough you cant get into the site to deactivate you stand a chance of breaking the offending plugin enough to get into the site.
Also, backup backup backup if you can.
Forum: Plugins
In reply to: [Hustle - Email Marketing, Lead Generation, Optins, Popups] Resizing Slide-inHere is a cleaned version of the working code
<div class="video"> <div class="playbutton"></div> <img class="alignright" src="https://sunovaworx.com/site/wp-content/uploads/2018/07/facebook-512.png" data-video="https://www.youtube-nocookie.com/embed/U8HVQXkeU8U?&autoplay=1&rel=0&fs=0&showinfo=0&autohide=3&modestbranding=1" /> </div> <div class="tube"></div> <style> .playbutton { <br />position: absolute; </p><p>font-size: 90px; <br />cursor: pointer; <br />color: red; <br /> } <br /> </style> <script type="text/javascript"> $('.playbutton,img').click(function() { var video = '<div class="video-container"><iframe style="border: none; overflow: hidden;" src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2FSunova-WorX-175948642466877%2F& tabs=timeline&width=340&height=500&small_header=true&adapt_container_width=true&hide_cover=false&show_facepile=true&appId" width="340" height="500" frameborder="0" scrolling="no"></iframe></div>'; $('.video').hide(); $('.tube').html(video); }); </script>
Here is one option
Deactivate the Plugin and remove it manually through your FTP program.
1. Login to the site via your FTP Program.
2. Go to the WordPress Plugins Directory and find where the Plugin is installed.
3. Delete the WordPress Plugin folder and/or files from your server.- This reply was modified 6 years, 8 months ago by jjlorentz.
Forum: Plugins
In reply to: [Hustle - Email Marketing, Lead Generation, Optins, Popups] Resizing Slide-inNote** Here is the code it saves.
Seems to be adding a paragraph tag
<div class="video"> <div class="playbutton"></div> <img class="alignright" src="https://sunovaworx.com/site/wp-content/uploads/2018/07/facebook-512.png" data-video="https://www.youtube-nocookie.com/embed/U8HVQXkeU8U?&autoplay=1&rel=0&fs=0&showinfo=0&autohide=3&modestbranding=1" /> </div> <div class="tube"></div> <style> .playbutton{<br /> position:absolute;</p> <p> font-size:90px;<br /> cursor:pointer;<br /> color:red;<br />}<br /></style> <script type="text/javascript"> $('.playbutton,img').click(function(){ var video = '</p> <div class="video-container"><iframe style="border: none; overflow: hidden;" src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2FSunova-WorX-175948642466877%2F& tabs=timeline&width=340&height=500&small_header=true&adapt_container_width=true&hide_cover=false&show_facepile=true&appId" width="340" height="500" frameborder="0" scrolling="no"></iframe></div> <p>'; $('.video').hide(); $('.tube').html(video); }); </script>
- This reply was modified 6 years, 8 months ago by jjlorentz.