codismo
Forum Replies Created
-
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Code deprecated on comment formwrong account. check below.
- This reply was modified 4 years, 1 month ago by codismo.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Automatically register users with comments(wrong account)
- This reply was modified 5 years, 2 months ago by codismo.
Forum: Developing with WordPress
In reply to: Disable widgets in customizer for sidebarI’d suggest using
unregister_widget()
to disable widgets you do not need. More info in the WordPress codexForum: Fixing WordPress
In reply to: Removing the header/footer in theme templateIn that custom page template replace
get_header()
with the contents of header.php and replaceget_footer()
with the contents of footer.phpThen remove the elements you do not need ( do not remove anything above
<body>
or below</body>
)Forum: Fixing WordPress
In reply to: My own custom template can’t Embed, other WP themes canCan you share the code for single.php ( and content-single.php or some other file in case you use a template part to output content on single.php )?
My first guess is that you are using
get_the_content()
instead ofthe_content()
, in which case filters are not applied and those URLs do not convert to an embed.Forum: Fixing WordPress
In reply to: Published date changes over timeI think the theme is showing the “modified date” ( date of the last update you made to the post ).
It’s using
the_modified_time()
instead ofthe_time()
Forum: Fixing WordPress
In reply to: custom image field does not show up?You’re getting the image ID. So, wrap the get_post_meta() in wp_get_attachment_url()
Forum: Fixing WordPress
In reply to: Hiding Page Post on Front PageTo hide that bottom section entirely?
Add this in WP admin > Appearance > Customize > Additional CSS:
body.page-id-2 #front-page-content { display: none; }
Forum: Fixing WordPress
In reply to: Change Widget To Center On Mobile ViewYou’re welcome ??
Forum: Fixing WordPress
In reply to: Post revision disappearedI’d suggest disabling one plugin at a time and checking if the revisions are back, you’ll find the plugin causing the issue.
Forum: Fixing WordPress
In reply to: Change Widget To Center On Mobile ViewYou’re welcome.
In WP admin > Appearance > Customize > Additional CSS.
Forum: Fixing WordPress
In reply to: Where WordPress stores Imported dataIt has to be in the database, WordPress can’t work without database access. Log into phpMyAdmin and you’ll see it in there.
Forum: Fixing WordPress
In reply to: Editing wp-config.php out of date?But keep in mind that it might not work.
If it does not work and you do not have access to php.ini file then you’ll need to contact your hosting provider and ask them to increase it.
Forum: Fixing WordPress
In reply to: Change Widget To Center On Mobile ViewUse this:
@media screen and (max-width: 768px) { .footer #text-2 { text-align: center; } }
Forum: Fixing WordPress
In reply to: remove mailchipm popupThe popup is not coming from the plugin, it’s coming from Mailchimp itself. Check the “Subscriber pop-up” settings on the MailChimp control panel.