Forum Replies Created
-
Author
-
bassfanParticipant
Well Radu I got it mostly working. Your comment about the app.min.js loading before had me trying a few different things in the js that my child loads. I finally found a combination that didn’t cause the errors along with updating datatables to the latest version. Thanks!
bassfanParticipantHey Radu
I haven’t changed my child theme in months. If I activate the parent, yes the issue goes away but that’s expected given the page template does not show anything in that case. Ya I agree that it’s the datatables doing it but just can’t figure out why. There are no videos on the page though. The site isn’t using any caching plugin.
Can I get a theme release that’s a couple back from current and try that until I can get it resolved further? Right now I’m running a release from quite a while back but it’s mismatched with visual composer and other required plugins.
Thanks
bassfanParticipantDefinitely sounds very similar.
Ya the problem is that the id after the # needs quotes around it i think…at least that was mentioned somewhere on stack overflow when I was looking. However, I’d just like a fix or the previous theme files available for me to get to but haven’t heard back from anyone (or Laura).
bassfanParticipantI tried removing everything related to fit-vids-style from app.js and app.min.js but then it had another similar error with something else.
bassfanParticipantI haven’t given a lot of testing on other browsers. I will try that, but it’s definitely reproducible with Chrome. It takes a while for it to do it, seems completely random.
bassfanParticipantThere aren’t any errors in the log. The only thing in the log is akismet debug for verifying key.
bassfanParticipantNo nothing has changed and the problem still exists. I’m always able to run the search, just sometimes it does the weird stuff I’ve described and doesn’t work correctly.
bassfanParticipantOne more example of where the issue is. Check out the title text in the grid boxes.
Attachments:
You must be logged in to view attached files.bassfanParticipantI went ahead and added this in as well: define(‘WP_MEMORY_LIMIT’, ‘128M’); I didn’t do the other two steps listed there.
Just a heads up, that code has a funny character for the single quotes. I don’t know if it’s valid or not but syntax highlighting in my IDE was off so I noticed it.
bassfanParticipantAll my plugins are up to date and I’m on Kleo 4.0.3 (although this problem has existed well before the latest update). I have enabled debug and the log as you described. I got it to have the issue again but don’t see any log being created in the wp-content folder. I was also able to get it to have another issue I hadn’t seen before. I searched for “Bill” and it worked. Then I backspaced that out, searched for “Jack” and hit Enter. Nothing changed on the dropdown. See attached. Again, it works most of the time. I think it took my ~10 tries to get it to mess up. One other item of note, when it doesn’t work, the little spinning icon on the right side of the search box never appears.
I would try and replicate it on the Pinterest example theme but its set to go to the results page which doesn’t have the same problem for me.
Any other ideas?
Attachments:
You must be logged in to view attached files.bassfanParticipantThanks Laura, I’ll play around with the vc posts grid in there and see what I can come up with.
bassfanParticipantYou’re right sharmstr, I knew that but didn’t think about how the search results page was going to show everything regardless. Checked again and it works as you described, all is well. Sorry for making you go the extra mile. Thanks for the awesome support!
bassfanParticipantWell that makes sense so I tried that but it didn’t do anything. I selected posts and pages just to find where it was setting it in the shortcode, got rid of posts and page and changed it to my custom post types (context=”series,tournament,angler”). It didn’t seem to affect anything. I searched for “frequent” and it still found the “frequently asked questions” page that is a page…not a cpt.
Any other ideas?
bassfanParticipantAwesome, thanks for looking into it. I have the tabs in my template working great.
bassfanParticipant…Active theme is child theme of Kleo 3.1.3 (with nothing that would likely interfere with VC unless its a plugin screwing with it)
bassfanParticipant– see attachment
– Added a Kleo Tabs element to a blank page then click the Tab settings for the individual tab
– Kleo Tabs element settings don’t say thisAttachments:
You must be logged in to view attached files.bassfanParticipantHey, I figured it out but you might want to know this if you don’t already. What was wrong was that I had chosen the “Tabs” element in VC. I went back and did it with the “Kleo Tabs” element and it worked fine.
The problem is though that I originally didn’t want to do the Kleo Tabs element because when you are adding text blocks to the tabs it says something about being deprecated since VC v4.6. That’s what led me to do the “Tabs” (note doesn’t say Kleo) element which didn’t give me that warning. However, that caused the problem in my last post. Creating a simple page in VC with the “Tabs” element and doing View Page causes the same effect I mentioned above. So something is messed up there.
I’m moving forward in my page template with the Kleo Tabs element shortcode, but let me know if you figure anything out with what I just described because if there are future updates with the two different tabbed content elements I want to be able to know they are coming.
bassfanParticipantWell I messed around with it for a bit. I have it mostly working but it shows the Section ID in the URL like below when I click the various tabs. Because of that, it acts like its a new page load everytime and clicking back in the browser cycles through all my different tab clicks. It doesn’t do that in the VC created one. Any idea why that’s happening? If that’s beyond your desired support level, no worries and let me know…I’ll figure something out.
http://www.sitename.com/page-name/#1448773409088-7e1a68da-cc5d
thanks again
bassfanParticipantThanks for the thought, I can probably handle that. Not the easiest but probably better than trying to make some other method look like that. Is there any reason you need to keep the “skeleton” page around as a page or can you remove it after you have the shortcode working in the template?
December 2, 2015 at 05:31 in reply to: how to change button style on Gravity Forms buttons the theme style? #90478bassfanParticipantFor any others that are looking at this, I used this GF filter to make my buttons one of the buttons included in the kleo theme. You can change the “class” to be any of their buttons.
COPY CODEadd_filter( 'gform_submit_button', 'gform_submit_button', 10, 2 ); function gform_submit_button( $button, $form ) { $button = sprintf( '<input type="submit" class="btn btn-primary btn-lg" id="gform_submit_button_%d" value="%s">', absint( $form['id'] ), esc_attr( $form['button']['text'] ) ); return $button; }
bassfanParticipantOk, thanks for the idea. Users will be able to create CPT posts from the front end via a gravity forms form so I’m looking to get any images they upload to the post displayed automatically in the resulting post. I won’t be adding images manually in the admin dashboard.
bassfanParticipantOk thanks. I hadn’t used Revolution Slider before so wanted to give it a go. I’ll look into that route though. Is there a shortcode for Kleo image galleries?
-
AuthorPosts