jstatondesigns
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity 2 PDF] gravity 2 pdf upload pdf file not workingRecent site update removed the mapping of the gravity forms fields and I am unable to remap them. I found a newer plugin that is supported and works much the same way. Here’s the link https://www.ads-software.com/plugins/e2pdf/ – hope it helps
Forum: Plugins
In reply to: [ACF RGBA Color Picker] Broken in WP 5.5Thanks for the update! Working as intended and not causing issues with other ACF fields.
Update – I implemented the fix you suggested and it seems to work. The styling is a little off on the ACF select field but its displaying correctly.
Thanks
Thanks for the reply. I’m using ACF Pro Version 5.5.7 and Content Aware Sidebars Version 3.7.1
I currently have them both installed on 3 different sites and the problem disappears from all 3 sites when I deactivate Content Aware Sidebars on each.
I’ll take a look at the fix for woocommerce and see if implementing it would resolve the issue I’m having.
Thanks again.
Having the same issue – I’ve updated the plugin and cleared my cache and it still gives me the upgrade message. Any other suggestions?
Forum: Plugins
In reply to: [Open Table Widget] Open div and h3 tag in sourceGotcha – thanks for the tip and for taking the time to point me in the right direction. Much appreciated.
Forum: Plugins
In reply to: [Open Table Widget] Open div and h3 tag in sourceHey Devin,
Here’s what I have for that widget// Reservation Widget // Location: above footer register_sidebar(array('name'=>'Make Reservation', 'before_widget' => '<div>', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ));
I think I see where you are going with it – I added a class to the before div –
<div class="test">
– and that seemed to resolve the issue. I guess it needed that so the plugin could insert its own class?Forum: Plugins
In reply to: [Open Table Widget] Open div and h3 tag in sourceIt’s a custom theme built on the Whiteboard framework. Here’s a link to the dev site – https://860.6db.myftpupload.com/
Also, I have the bootstrap options disabled but not the css.
Thanks for taking a look.
Forum: Plugins
In reply to: [Open Table Widget] CSS/JS refuses to loadSure thing
Forum: Plugins
In reply to: [Open Table Widget] CSS/JS refuses to loadJust installed this to test it out and I’m having an issue with the different themes / css not displaying as well. Looking at the source, it seems there is an open div being created that wraps the entire widget and also the h3 tag is not closed.
opening div:'<divclass=”otw-bare-bones-style”<h3 class=”otw-widget-title”>Make a Reservation’
Open table form here
closing div: ‘</divclass=”otw-bare-bones-style”<h3>’
Other than that – everything else works great.
Forum: Plugins
In reply to: [Search Everything] Highlight formatting issues with titles….Having the same issue. It looks like the highlight span is being included in the href since it has the same search term and is therefore being displayed. I’ve tried hiding it with CSS but I can’t target just the
<a title>
since the span class is the same around the search term.Ideas?
my bad – here’s the full line of code
<?php if (function_exists('soliloquy_slider')) { soliloquy_slider('82'); }?>
Yes, I have the opening and closing tags in my file, I was just referencing the supplied code in my post. It’s working with the bracket so I’m good. I just wanted to put this out there in case anyone else ran into the same issue.
If I remove the bracket, the page goes completely blank and no code is generated. I have the function in my header file and thought that maybe that could be the issue, so I put it in one of my page templates instead and I got a server error. Once I added the bracket – everything worked just fine.
I managed to create titles and captions just by styling a blockquote for the slides. You’ll have to give it absolute positioning and set the top according to the size of your slider. Then just add the blockquote under the image in the editor window. Here’s an example of the CSS –
div.anythingSlider .anythingWindow blockquote {
width:613px;
height:45px;
position: absolute;
top:270px;
color:#FFF;
padding:10px;
font-family: “HelveticaNeue-Light”, “Helvetica Neue Light”, “Helvetica Neue”, Helvetica, Arial, “Lucida Grande”, sans-serif;
background:url(../images/slider-caption-bg.png);}And here’s the site – https://www.rocksolidpd.com/
Another example here – https://athensfloors.seoteric.com/
Hope this helps.
Oh, and the reason I used a blockquote was so the client could add their own titles without having to edit in the html view.