cpaprotna
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Connection Lost ErrorI figured out the exact line of code that is causing the issue, but I’m not sure why….
wp_register_style('fsga_amember-style', $path); // wp_enqueue_style('fsga_amember-style');
If I uncomment out the wp_enqueue_style, I get the error. With it commented, no connection error. The $path variable is the full path to a file that exists on our domain, but not within the wordpress install.
Do I have something wrong with my statement?
Forum: Plugins
In reply to: [SpiderCalendar] Calendar Not Showing on Front End of WebsiteI’m having the same issue. I just updated to the latest version of WordPress and the Event Calendar. If I view the calendar with the following shortcode, it does not display:
[Spider_Calendar id="1" theme="13" default="month" select="month,"]
However if I change it to
[Spider_Calendar id="1" theme="13" default="month" select="month,list,week,day,"]
it will display.When it is displaying the tabs at the top to switch between views do not have working links.
Here is a link that has both of the above shortcodes on it, you can see that only one of them is being displayed: https://www.floridaguardians.com/test/
Forum: Plugins
In reply to: [Easy Video Player] Change color of controlsI figured it out. Add class=”color-light” to the shortcode.
Forum: Plugins
In reply to: [Easy Video Player] Change color of controlsDid you ever get a solution to this? We are trying to change the color of the play button too.
Forum: Plugins
In reply to: [Really Simple CAPTCHA] Really Simple Captcha 1.8 Broken with Contact Form 7?pben31 – you want full permissions to the directory (0777)
Forum: Plugins
In reply to: [WP Customer Area] Non required E-mail doesn't validate correctlyI’ll try, I’ve never used GitHub before…
Forum: Plugins
In reply to: [WP Customer Area] Non required E-mail doesn't validate correctlyI modified the file \customer-area\includes\core-classes\object-meta\validation\email-validation.class.php
and changed the validate function to:
public function validate( $label, $value ) { $parent_val = parent::validate( $label, $value ); if ( $parent_val!==TRUE ) return $parent_val; if (!$this->required && empty($value)) return TRUE; if ( !is_email( $value ) ) return sprintf( __('%1$s is not a valid email address.', 'cuar'), $label ); return TRUE; }
Forum: Plugins
In reply to: [Custom Content Type Manager] 0.9.7.13 breaks cs_image fieldI fixed this by modifying your thickbox.js file.
I changed line 15 to:
jQuery("#TB_window").fadeOut("fast",function(){jQuery('#TB_window,#TB_overlay,#TB_HideSelect').trigger("tb_unload").unbind().remove();}); jQuery( 'body' ).removeClass( 'modal-open' );
Forum: Plugins
In reply to: [Custom Content Type Manager] 0.9.7.13 breaks cs_image fieldTo add further detail…
I switched to 2014 theme and disabled ALL plugins but CCTM and still had the issue.Forum: Plugins
In reply to: [SP Project & Document Manager] Can't upload files in admin areaI’m also seeing the same issue. I’m just trying it out, so I haven’t spent much time debugging the issue.
Forum: Plugins
In reply to: [Really Simple CAPTCHA] Really Simple Captcha 1.8 Broken with Contact Form 7?I just installed CF7 version 3.9.1 and captcha 1.8. If the captcha plugin is activated, CF7 will not submit. I just get the spinning arrows. If captcha plugin is deactivated, the form will submit. I checked for any other conflicting things (theme and all other plugins) and this is the only plugin that caused the error.
Is there a way to download an earlier version of captcha so I can test that out?
Forum: Plugins
In reply to: [Constant Contact for WordPress] Invalid status codeI edited the code in the plugin to print out the error message, there is no way to enable it in the control panel settings.
Forum: Plugins
In reply to: [Form Manager] CSV Export not workingI’m not sure what operating system and version of excel my client is using, but I replicated this very easily with Chrome, Windows 7 and Excel 2007. T The file was opened via a double click.
For me, the fix above is better than accounting for international characters. The site will not have too many international characters.
Forum: Fixing WordPress
In reply to: Automatic Upgrade to 3.6.1I decided to run upgrade.php to make sure that my database was updated with the latest version. After I did this, it said the database was already at the current version, but immediately, it recognized that there was an update available.
Forum: Plugins
In reply to: [Constant Contact WordPress Widget] How to add captcha to subscription formThis would be a wonderful addition. I just added the form to my website yesterday and I’ve already had several SPAM joins to the newsletter. Since Constant Contact Charges by the number of users, this is not acceptable.