Carlos
Forum Replies Created
-
did you ever find a solution to obtaining the navigation of this gallery?
https://blogs.babycenter.com/mom_stories/the-cutest-babies-of-2012/
thanks again ??
hi there – how embarrassing. I was in capsulecrm expecting to see a notification or the latest entry show up on the latest updates/dashboard.
so yes when I go to people – I do see the entries ?? thanks for your support. lessons learned believe me ??
Carlos
hi nicolas,
thanks very much for your support. i think I followed your instructions okay – please see this zipped file that contains those debugged files.
https://wordpressstreet.com/capsulecrm-log.zip
please advise and thanks again.
carlos
Hi Nicolas – thanks for your note. To confirm – we do “not” have cron enabled as it was recommended not to enable it.
btw – we do have curl installed and enabled and are running PHP 5.3.6.
Thanks for creating this plugin. We were hoping for this! We installed the plugin and followed the instructions for setting it up. Everything on the setup side looks good – green checks, etc. However when we test a gravity form submission – and then go into our capsulecrm account to see if it transferred the capture – we do not see this new data.
Any thoughts on what we are doing wrong or can do to get this implemented? Please advise and thanks!
Carlos
btw we’re on WP 3.3
Forum: Fixing WordPress
In reply to: Page Navigation Not WorkingHey there – thanks for your reply – I appreciate it. Followed your instructions – here is the page:
Look forward to what you can see.
Thanks again!
Carlos
Forum: Fixing WordPress
In reply to: upgrade to 3.2.1 blew out our JQuery Sliders & JS menusso after a dozen of hours racking my brain – trying fresh installs, restores, etc. – I had another one of our developers look at this and sure enough he found the issue that basically broke JavaScript on our home page in WordPress 3.2.1.
culprit was the header-navigation.js file in the theme – line 14.
corrected / adjusted code:
jQuery(function(jQuery){
// Set the current page for highlighting purposes
if ( jQuery(“body”).is(“.paged”) ) {
jQuery(“#menu-header-navigation a[href=” + window.location.href.split(“/page/”)[0] + “/]”)
.addClass(“current-page”)
.closest(“#menu-header-navigation > .menu-item”)
.addClass(“current-menu-ancestor”)
.addClass(“current-menu-parent”)
.addClass(“current”)
;
} else {
jQuery(“#menu-header-navigation a[href='” + window.location.toString() + “‘]”).addClass(“current-page”);
}});
incorrect/miscoded:
jQuery(function($){
// Set the current page for highlighting purposes
if ( $(“body”).is(“.paged”) ) {
$(“#menu-header-navigation a[href=” + window.location.href.split(“/page/”)[0] + “/]”)
.addClass(“current-page”)
.closest(“#menu-header-navigation > .menu-item”)
.addClass(“current-menu-ancestor”)
.addClass(“current-menu-parent”)
.addClass(“current”)
;
} else {
$(“#menu-header-navigation a[href=” + window.location.toString() + “]”).addClass(“current-page”);
}});
Forum: Fixing WordPress
In reply to: upgrade to 3.2.1 blew out our JQuery Sliders & JS menushey ipstenu – thanks very much for your note. we develop our own themes.
i am going to pass your note along to my developer to check out what you said. hoping we can pinpoint and isolate the issue as we were just about to go live – i decided to upgrade to 3.2.1 and boom – issues. if you think of anything else – would love your input. thanks again ?? carlos
Forum: Fixing WordPress
In reply to: upgrade to 3.2.1 blew out our JQuery Sliders & JS menusmy host said the site has jQuery 1.6.1 – so I’m thinking that is not the issue (bummer). can’t seem to figure out what is causing this.
Forum: Fixing WordPress
In reply to: upgrade to 3.2.1 blew out our JQuery Sliders & JS menushey esmi – thank you very much – will do that right now.
Tobias -you rock – thanks man!! Appreciate the fast response ?? Carlos