codismo
@codismo on WordPress.org
- Member Since: May 7th, 2016
- Location: Internet
- Website: codismo.com
Contribution History
codismo’s badges:- Plugin Developer
-
Posted a reply to Code deprecated on comment form, on the site WordPress.org Forums:
Hi, Looks like the log was made while you were in the Customizer (WP admin… -
Committed [2158379] to Plugins SVN:
assets -
Committed [2158361] to Plugins SVN:
Tag 1.0.0 -
Committed [2158360] to Plugins SVN:
trunk 1.0.0 -
Committed [2158359] to Plugins SVN:
assets -
Posted a reply to Automatically register users with comments, on the site WordPress.org Forums:
Happy to hear it's sorted out. -
Committed [2155393] to Plugins SVN:
tag 1.0.0 -
Committed [2155392] to Plugins SVN:
trunk 1.0.0 -
Created a topic, Awesome plugin, on the site WordPress.org Forums:
Awesome plugin. Still on the fence about Gutenberg but… -
Posted a reply to Disable widgets in customizer for sidebar, on the site WordPress.org Forums:
I'd suggest using unregister_widget() to disable widgets you do not need. More info in the… -
Posted a reply to Removing the header/footer in theme template, on the site WordPress.org Forums:
In that custom page template replace get_header() with the contents of header.php and replace get_footer()… -
Posted a reply to My own custom template can’t Embed, other WP themes can. Help?, on the site WordPress.org Forums:
Can you share the code for single.php ( and content-single.php or some other file in… -
Posted a reply to Published date changes over time, on the site WordPress.org Forums:
I think the theme is showing the "modified date" ( date of the last update… -
Posted a reply to custom image field does not show up?, on the site WordPress.org Forums:
You're getting the image ID. So, wrap the get_post_meta() in wp_get_attachment_url() -
Posted a reply to Hiding Page Post on Front Page, on the site WordPress.org Forums:
To hide that bottom section entirely? Add this in WP admin > Appearance > Customize… -
Posted a reply to Change Widget To Center On Mobile View, on the site WordPress.org Forums:
You're welcome :) -
Posted a reply to Post revision disappeared, on the site WordPress.org Forums:
I'd suggest disabling one plugin at a time and checking if the revisions are back,… -
Posted a reply to Change Widget To Center On Mobile View, on the site WordPress.org Forums:
You're welcome. In WP admin > Appearance > Customize > Additional CSS. -
Posted a reply to Where WordPress stores Imported data, on the site WordPress.org Forums:
It has to be in the database, WordPress can't work without database access. Log into… -
Posted a reply to Editing wp-config.php out of date?, on the site WordPress.org Forums:
But keep in mind that it might not work. If it does not work and… -
Posted a reply to Change Widget To Center On Mobile View, on the site WordPress.org Forums:
Use this: @media screen and (max-width: 768px) { .footer #text-2 { text-align: center; } } -
Posted a reply to remove mailchipm popup, on the site WordPress.org Forums:
The popup is not coming from the plugin, it's coming from Mailchimp itself. Check the… -
Posted a reply to Strange Javascript in wp-content\\uploads folder, on the site WordPress.org Forums:
Can you include the URL to the JS file? Seeing what it does would help… -
Posted a reply to Hiding Images in your post, on the site WordPress.org Forums:
Well still, we'd need the URL to your website in order to see what is… -
Posted a reply to WP Backend without function, on the site WordPress.org Forums:
If you tried disabling all plugins and activating a default WP theme then it might… -
Posted a reply to Post revision disappeared, on the site WordPress.org Forums:
Maybe just the revisions section is hidden. When on the post edit page, in top… -
Posted a reply to Visual editor suddenly not working, on the site WordPress.org Forums:
If you tried disabling all plugins and activating a default WP theme then it might… -
Posted a reply to hide form for logged in users, on the site WordPress.org Forums:
You can use a plugin like User Status Shortcode, so you would use this: [userloggedout][optinform][/userloggedout] -
Posted a reply to How to modify only local $post object, not globa?l, on the site WordPress.org Forums:
Try: if ( is_single() && in_the_loop() && is_main_query() ) { global $wpdb; global $post; $post->post_title… -
Posted a reply to How to bypass Author page, on the site WordPress.org Forums:
Give Disable author pages a try. -
Posted a reply to Menu items squished, no spacing, on the site WordPress.org Forums:
The URL to the website will help in getting an answer. -
Posted a reply to All plugin updated but number “1” appears !, on the site WordPress.org Forums:
The plugin that's reporting to have an update is LayerSlider. Do you have that plugin… -
Posted a reply to Remove Blog Title from one page, on the site WordPress.org Forums:
If you need to hide the menu go with: body.page-id-5 #menu { display: none; }… -
Posted a reply to contact form missing, on the site WordPress.org Forums:
Similar to Contact Form 7, head over to WP admin > Ninja Forms, you'll see… -
Posted a reply to contact form missing, on the site WordPress.org Forums:
What were you using to power the contact form. Was it Contact Form 7 plugin?… -
Posted a reply to All plugin updated but number “1” appears !, on the site WordPress.org Forums:
Put this into the theme's functions.php // only proceed if admin ( can manage options… -
Posted a reply to Size of logo in header, on the site WordPress.org Forums:
You have a coming soon page so noone can see the website in order to… -
Posted a reply to Problem with center allign embedded codes, on the site WordPress.org Forums:
This should work: .imgur-embed-iframe-pub, imgur-embed-pub { text-align: center; } -
Posted a reply to Feutured image if exists, on the site WordPress.org Forums:
Neither of those is correct. You just need to move the $the_query->the_post(); in the original… -
Posted a reply to Centering Footer Menu, not just centering text alignment, on the site WordPress.org Forums:
You're welcome :) -
Posted a reply to To show or not to show comments…., on the site WordPress.org Forums:
Might be theme related. Normally when comments are closed the comment submit form is be… -
Posted a reply to Centering Footer Menu, not just centering text alignment, on the site WordPress.org Forums:
Try this CSS: #sidebar-footer .widget_nav_menu { text-align: center; } -
Posted a reply to ADD a link into an Image, on the site WordPress.org Forums:
Link the image: <a href="LINK_URL"><img src="IMAGE_URL"></a> -
Posted a reply to Live preview of controls change in Theme Customizer, on the site WordPress.org Forums:
You'll need JavaScript for that. In a "change" event for the select field get the… -
Posted a reply to How to change title of page(tag), on the site WordPress.org Forums:
You're looking for the wp_title filter. -
Posted a reply to How to update a custom made theme, on the site WordPress.org Forums:
I'm using WUpdates for several themes, might want to give that a try. -
Posted a reply to Custom loop including sticky post, on the site WordPress.org Forums:
wp_get_recent_posts() uses get_posts() which forces "ignore_sticky_posts" for the query. Do a custom query with WP_Query… -
Posted a reply to Feutured image if exists, on the site WordPress.org Forums:
@keesiemeijer is correct, $the_query->the_post(); needs to be the first thing inside of the while loop.… -
Posted a reply to Size of logo in header, on the site WordPress.org Forums:
The URL to your website will help in getting a fix for the issue. -
Posted a reply to Mobile version – responsiveness NOT working, on the site WordPress.org Forums:
Hi, Every page has a special CSS for that margin so a global solution would…
Developer
-
Page Template Column
Active Installs: 100+
-
Plugin Compatibility Info
Active Installs: Less than 10