mwassmer
Forum Replies Created
-
Boris – I just send you a message via the Contact form on your website.
Boris – Could you let me know where the plugin stores subtitles in the database? I’d like to try to go in and manually delete that entry in the database.
Unfortunately, deleting the plugin files didn’t fix the original OptIn Forms problem that was apparently caused by entering the link. Deleting the plugin files only got my site up and running after it crashed as a result of adding the unregister_setting function call.
When I followed the instructions, I got an error that crashed my site:
Fatal error: Call to undefined function unregister_setting() in /home/wp_mmmapc/livetozero.com/wp-content/plugins/optin-forms/includes/functions.php on line 682Therefore, I had to manually delete the plugin files using my FTP client to get the site back up and running.
Thanks Boris, a step-by-step walkthrough would be great! I’m using form number 05.
Thanks for the reply, Boris. However, I don’t think it would smart for me to send out my admin login credentials. Could you please describe the fix, or at least describe the cause of the problem so I can try to fix it? Others in a similar situation may also benefit from the information if you post it here.
Forum: Plugins
In reply to: [Slickr Flickr] Possible jQuery conflict with another pluginPlease disregard my previous post. Apparently, the problems are occurring because I did not properly register jQuery in my amCharts code.
Forum: Plugins
In reply to: [amCharts: Charts and Maps] Undefined function errorThanks for the reply. The Customizr theme folks just issued an update that fixed the problem, so amCharts was not the problem.
Forum: Plugins
In reply to: [amCharts: Charts and Maps] amCharts in popupThis approach makes sense, but I’m having trouble implementing it. Here’s what I’ve done so far:
– Created a new default serial chart using the WP plugin
– On this page, I embedded the chart using[amcharts id="serial-4"].
– On the same page, I added a link to the lightboxed version of the same chart. To do this, I created an iLightBox gallery, added a single slide to the gallery, selected “HTML” for the slide “type,” set the HTML content to[amcharts id="serial-4"], and used[ilightbox id="1"]See same chart in lightbox[/ilightbox]to generate the link to the lightbox.
– In my chart’s HTML, I changed the width to500pxbecause I was concerned that100%might be problematic for iLightBox. My chart’s HTML is<div id="%CHART%" style="width: 500px; height: 300px; background-color: "#ffffff";></div>. Note that I also changed the background color to avoid any potential problems with iLightBox’s default black background.
– I removed thevarfrom the chart’s Javascript code for the chart variable declaration to make it a global variable.
– I calledamcharts2.invalidateSize()in several different iLightBox event handlers and in the Chrome console window, but it isn’t working. I’m also getting a lot ofundefined is not a functionerrors in the console.
– When I was playing around with this yesterday, I briefly got the chart to show up in the lightbox, but then it stopped working after I made some other changes and I couldn’t remember what I did to get it working. In other words, I think this is close to working!Another related question: how do I know what variable name to use when I call the
invalidateSize()method in the iLightBox event handler? I’m a little confused about the%CHART%feature for variable name declarations and how this affects Javascript calls on the chart object. I thinkamcharts2is the name that was generated in my example page (it appeared in the Chrome console), so that’s why I used for testing purposes. I thinkamcharts2is the chart that successfully appears on my WP page.Forum: Plugins
In reply to: [amCharts: Charts and Maps] amCharts in popupI decided to use iLightBox. According to the iLightBox documentation, you can create an HTML lightbox with a shortcode as the HTML.
Here’s what happens when I try to put a chart in a lightbox (click “Show chart”)
Here’s the same chart in a page without using a lightbox