Rob Rusnak
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Social Icons] Add multiple of one icon (facebook)Hi Nick,
Thanks for the great response.
1) I know what you mean, I’m always trying to talk clients out of bad ideas, but it doesn’t always work ??
2) I did not even think of that! Leaning towards this.
3) I’ll try this as well, thanks so much for the code.Take care,
RobHi @bradvin
Is there any progress on this issue? I have the same problem
https://www.ads-software.com/support/topic/links-in-description-field-breaks-gallery/@danieliser
Do you have any thoughts on my last post and questions?Given that it works on one page and not the others doesn’t support your previous point.
Thanks again for your help in advance.
Rob
@danieliser
I don’t think that’s true. If that’s the case, then it also would not work on this page (the one I referenced before)
https://zbioscience.com/probiotic-cleaner/multi-task-cleaner/So why does it work on that page and not the others?
I only reference one popup on each product page in the “Get SDS” link. So why does the plugin load all popups?
PS: if if would help if you logged in, give me your email and I’ll send a login.
Thanks
Rob@danieliser
I’m not sure if this is a clue or not, but the phone number field mask/formatting also doesn’t work in most popup, it appears as a regular text field. However, on the Multi Task page, where the validation works properly, the phone mask also works fine, so it might be related. I still don’t know why that page works and all others don’t.@danieliser
I forgot to mention, this all started with me sending a priority support request to GF, and we eliminated that it was a GF issue, because the validation works fine with the same GF shortcode on a page outside of a PUM popup (see my original post above). I’m happy to revisit that with GF if you determine otherwise.But since one page is working now it seems we’re close.
I’m looking forward to your reply.
Thanks,
Rob@danieliser
Thanks so much, but it seems I have confused the issue by sharing my test page. I only use the same GF twice on a page on that test page. All my “real-world” product pages only include one popup with one instance of the GF. example:
https://zbioscience.com/probiotic-cleaner/c-biosurfactant-cleaner-concentrate/
Also you can confirm the issue exists on all the other product pages on the left menu, they all have popups/GFs where the GF validation sputters. So that’s not my issue.HOWEVER, I think I may have accidentally discovered a clue. In all previous above pages/popups I created, I used a “extra css selector” class, named after the unique product, to invoke the popup. For instance on the example link above I used “popmake-c-biosurfactant-cleaner-concentrate” in the link class and extra selector field.
But Yesterday I needed to add 2 new products and on these new products/popups I used the default popup/post class, so I left the extra selector field blank, and in my link I used “popmake-594” and “popmake-589” to invoke.
I did not expect any change in the issue, BUT the GF validation actually works on ONE and of the new products and doesn’t work on the second new product. (note these products are live but not in the product menus yet).
#1 new product — GF validation WORKS:
https://zbioscience.com/probiotic-cleaner/multi-task-cleaner/#2 new product — GF validation DOES NOT Work:
https://zbioscience.com/probiotic-cleaner/encapsulator-rug-carpet-cleaner/And I can’t tell what the difference is between the two — if any. I did them the same.
I hope you can shed some light on this issue, or detect where I am screwing up.
Thanks again!
Rob@danieliser
I updated from v1.5.8 to v1.6 on staging and I’m still having the same issue:
https://zbs.staging.wpengine.com/probiotic-cleaner/c-biosurfactant-cleaner-concentrate/BTW, the production site is live now so here’s the same page still running 1.5.8
https://zbioscience.com/probiotic-cleaner/c-biosurfactant-cleaner-concentrate/@danieliser
I’m actually having problems now with v1.5.8, I just learned 1.6 was released. I will update on a staging server to 1.6 and see if that helps then report back.But first let’s rewind a little… I’m not sure if this might help you. My project has been going on for a few months. I remember a month or so ago everything was working, including the GF error messages. At some point either Popup Maker and/or GF had updates, then a couple weeks later was when I noticed the problem with the GF error messages in the modals. At the time I had no reason to track versions of Popup Maker or GF. Any way you may want to look at other recent updates of Popup Maker to see if that’s when it started, most likely 1.5.6 or 1.5.7.
- This reply was modified 7 years, 10 months ago by Rob Rusnak.
@yogaman5020
I understand, thanks for the update. I’m looking forward to it.@waltmesser
Do you have any news or ideas on a solution? Again, if we can private message, I am happy to share access if that helps. Send to rob <at> wearecomet <dot> com.Thank you in advance!
Rob
Thank you Walter, I look forward to the solution.
Forum: Plugins
In reply to: [Simple Social Icons] Icons Invisible Since WordPress UpdateI am having the same issue with Infinity Pro theme. The icons do not show up no matter what. They are present in the source code, but are not displaying, even though there is no CSS causing them to be invisible.
Forum: Themes and Templates
In reply to: [Customizr] Category/Archives do not have right sidebarThank you Menaka,
I was able to get the layout to work, but the sidebar widgets do not show up on category pages.
For instance:
https://beta.jcyte.com/news-blog/The code I’m using…
I am not sure how to adjust the values for content etc.add_filter('tc_global_layout', 'my_custom_layout' ); function my_custom_layout( $layout ) { $my_layout_for_categories = array( 'r' => array ( 'content' => 'span9' , 'sidebar' => 'span3' ), 'l' => array ( 'content' => 'span9' , 'sidebar' => 'span3' ), 'b' => array ( 'content' => 'span9' , 'sidebar' => 'span3' ), 'f' => array ( 'content' => 'span9' , 'sidebar' => 'span3' ), ); if ( is_category() ) { $my_layout = $my_layout_for_categories; } //sets new values for content and sidebar (checks if there are new values to set first) foreach ($layout as $key => $value) { $layout[$key]['content'] = isset( $my_layout[$key]['content']) ? $my_layout[$key]['content'] : $layout[$key]['content']; $layout[$key]['sidebar'] = isset( $my_layout[$key]['sidebar']) ? $my_layout[$key]['sidebar'] : $layout[$key]['sidebar']; } return $layout; }
Forum: Themes and Templates
In reply to: [Customizr] Add Unique Header Image to each pageHi Menaka,
That’s great, thank you, it’s exactly what I wanted EXCEPT I need it on pages, not single posts. This feature does not appear to be possible on pages.Does anyone know how I can transfer this feature to PAGES (instead of single posts) in the php templates of my child theme?
Thank you!