amichel86
Forum Replies Created
-
@dcooney while waiting for your reply I tried PHP 8.2 and it fixed the problem, thanks!
@dcooney it looks like it’s back here’s the error message:
An error of typeE_PARSEwas caused in line42of the file/home/xxx/domains/xxx/public_html/wp-content/plugins/ajax-load-more-filters/functions/facets/class-cache.php. Error message:syntax error, unexpected '|', expecting ';' or '{'- This reply was modified 11 months, 3 weeks ago by amichel86.
Forum: Plugins
In reply to: [Contact Form 7] email html formatting horror@it-hertz is right, line breaks are ignored since a couple of updates.
Forum: Fixing WordPress
In reply to: Your site has updated to WordPress 5.5.3-alpha-49449Same problem and I have a lot of sites to manage.
The “beta testing” plugin has never been installed!
Same problem and I don’t have the beta test plugin. Sites get updated to alpha version with a lot of unnecessary themes being installed!
Forum: Plugins
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] Translate with WPMLAwesome, keep up the good work @glenwpcoder 🙂
- This reply was modified 6 years ago by amichel86.
Forum: Plugins
In reply to: [Drag and Drop Multiple File Upload for Contact Form 7] Translate with WPMLAwesome @glenwpcoder so for the “Remove” title I guess I can go with JS and is there a function I can tweak without playing around in the plugin file for the “Deleting…” string?
Thanks a lot for your quick response! 🙂
Forum: Plugins
In reply to: [User Specific Content] Custom roles stop working after update to 1.04Yes add this to your functions.php file and it should do the trick, it did for me! Replace “projet” by the name of your custom post type.
// User Specific Content CPT
add_action(‘USC_add_meta_box’,’usc_add_metabox_to_ctp’);
function usc_add_metabox_to_ctp($obj){
add_meta_box(
‘User_specific_content’,
__( ‘User specific content box’),
array($obj,’User_specific_content_box_inner’),
‘projet’
);
}Forum: Plugins
In reply to: [User Specific Content] Custom roles stop working after update to 1.04I just saw that I have it everywhere but on my custom post type. What do I need to do in order to enable it there?
Thanks! 🙂
Forum: Plugins
In reply to: [User Specific Content] Custom roles stop working after update to 1.04It seems like I don’t have the option for the “User specific content box” in the screen options. You guys still have it?
Forum: Requests and Feedback
In reply to: Typo in alert boxTopic closed! 🙂
Forum: Requests and Feedback
In reply to: Typo in alert boxAhhhh it might be, I just did a search for “midia” in the main WordPress folder and I didn’t find the word. Sorry for the inconvenience! 😛
Forum: Plugins
In reply to: [Twitter Widget Pro] widget doesn't show up on the pageI found the solution. In the plugin’s settings change
Use Twitter API via HTTPS
to
Use Twitter API via HTTPThe widget then appeared!
Forum: Plugins
In reply to: [Twitter Widget Pro] widget doesn't show up on the pageSame here. Updated to new version and nothing shows up on the page.
Thank you very much, exactly what I was looking for! And another question if I want to display custom text in that link, what would I need to add?