C-Fusion Multimedia
Forum Replies Created
-
Forum: Plugins
In reply to: [Enable Media Replace] Version 4 – Cannot replace pdfSame issue here when replacing a PDF. Looks like @pbiron located the cause, hoping developer will push a fix soon.
Forum: Plugins
In reply to: [WP Crontrol] Get Next Run Time on PHP Cron EventTested the following and still getting nothing on the results, do i need to include any php tags in $code?
$code = 'CronProcessMergeRequestQueue();'; $args = array( 'code' => $code ); $cronInfo = wp_next_scheduled('crontrol_cron_job', $args); var_dump($cronInfo);
Forum: Plugins
In reply to: [WP Downgrade | Specific Core Version] Not working to downgrade off of 5.6same problem here
Forum: Plugins
In reply to: [WP-PageNavi] Latest version bug with secondary queryI encounter the same issue with the latest version and had to roll back to the previous which resolved the issue. I am using a filter which may be part of whats causing the incompatibility. See below:
add_filter( 'wp_pagenavi', 'cfmm_pagination', 10, 2 ); function cfmm_pagination($html) { $out = ''; //wrap a's and span's in li's $out = str_replace("<div","",$html); $out = str_replace("class='wp-pagenavi'>","",$out); $out = str_replace("<a","<li><a",$out); $out = str_replace("</a>","</a></li>",$out); $out = str_replace("<span","<li><span",$out); $out = str_replace("</span>","</span></li>",$out); $out = str_replace("</div>","",$out); return '<ul class="pagination pagination-centered">'.$out.'</ul>'; }
Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] Lookup Fieldsi ran into this same problem. Goto line 1929 of inc/salesforce-api.php and comment it out and the field will be available:
if($var[‘type’] === ‘reference’ && empty($var[‘req’]) && apply_filters(‘gf_salesforce_skip_reference_types’, true)) { continue; }
Forum: Plugins
In reply to: [Require Featured Image] Doesn't work on the latest version of WordPressI am having the same issue, anyone find any workarounds?
This happens if you have members plugin or i have also noticed it having issues with user role editor plugin
Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] Static Data InputThat is exactly how I accomplish it, since its static the hidden field should be fine
Forum: Plugins
In reply to: [Visual Form Builder] Transparent BackgroundCreate a custom CSS file for it and you can modify all the elements. See link here: https://matthewmuro.com/2012/11/15/visual-form-builder-pro-customizing-the-form-design/
Forum: Plugins
In reply to: [Visual Form Builder] VFB Not Picking Up Stylesactually nevermind and mark this as resolved. I forgot to add wp_head() to my theme’s header file. :/
Forum: Plugins
In reply to: [Swift SMTP (formerly Welcome Email Editor)] Sending to admin, but not usersExactly what i was looking for!
Thanks!
Forum: Plugins
In reply to: [Swift SMTP (formerly Welcome Email Editor)] Sending to admin, but not usersteolives,
Does that plugin allow modification of site registration emails, password reset notifications, etc? I didnt see anything on the feature list.
Thx
Forum: Plugins
In reply to: [Swift SMTP (formerly Welcome Email Editor)] Sending to admin, but not usersI’m having the same issue, I have Profile builder pro as well. WordPress 3.5. Any fix would be appreciated.