Back to Front
Forum Replies Created
-
Hi, yes we still need this. Its confusing my site users. Not happy with Jetpack forcing their advertising network to be on by default, and especially expecting users to add filters to turn it off, when they could just have a switch! Added an issue on github https://github.com/Automattic/jetpack/issues/34133
Forum: Plugins
In reply to: [Custom Related Posts] Possible to Add Excerpt?Thanks for this, sharing how i put it together with image and excerpt in case its useful for someone
//Add excerpt and image to Custom Related Posts Plugin Display function crp_custom_output( $output, $post_id, $relation ) { // Alter $output using the $relation from this $post_id. if ( isset( $relation['id'] ) ) { $excerpt = get_the_excerpt( $relation['id']); $image = get_the_post_thumbnail( $relation['id'] ); $output = '<div class="column-one-third"><a href="' . $relation['permalink'] . '">' . $image . '<h3>'. $relation['title'] .'</h3>'. '<p class="excerpt">'. $excerpt. '</p></a></div>'; } return $output; } add_filter( 'crp_output_list_item', 'crp_custom_output', 10, 3 );
Hi, ideally you can get into your site via FTP, or you your hosts control panel, disable the plugin there, and see if that works?
If you really can’t do that,
I would try to
> Go to login page
> Open the inspector tool
> Go to the network tab
> Refresh page
> search for “recaptcha”If nothing shows up, its not showing the symbol because recaptcha isn’t loading, and the problem is something else.
If it is loading recaptcha, make sure your browser doesn’t look anything like a robot, disable VPN, maybe log in to a google account, etc.- This reply was modified 2 years, 11 months ago by Back to Front.
- This reply was modified 2 years, 11 months ago by Back to Front.
Hi, just letting you know I have the similar issue of this plugin throwing an error in the console once the minification plugin (Siteground Optimizer) is active.
Is there a specific file/url/something else I should exclude from the cache?
the error message is
Uncaught SyntaxError: expected expression, got '}'wp-login.php:998:1
Forum: Themes and Templates
In reply to: [Miyazaki] Clearfix on single posts and archives?Thanks for the advice @anlino
Yeah I removed the absolute positioning and put it back the same way with static positioning in the same place… My css a bit messy and probably missing lots of posible types of content, but it does the job for now@media (min-width:1020px) { .post-inner { max-width: 100%; } .post-inner .entry-content p, .post-inner .entry-content div, .post-inner .entry-content blockquote /*probably missing a lot of elements here */ { max-width: 60rem; } entry-content .alignright { left: calc( 60rem + 8rem ); max-width: calc( 100vw - 60rem - 8rem - 8rem ); width: calc( 100vw - 60rem - 8rem - 8rem ); position: static; float: right; } }
- This reply was modified 3 years ago by Back to Front.
Forum: Plugins
In reply to: [Action Network] Shortcode causing error messageOh nevermind,
The action id=1 had been switched to ‘draft’ in Action Network…
oops sorry my mistake.
Forum: Themes and Templates
In reply to: [Miyazaki] Font and coloryep you’ve got the right idea!
something like this,
also changes the underline on hover color,chuck it in your child theme’s style.css ??
a, .entry-content a { color:purple; } .entry-content a:hover{ color:pink; border-bottom-color: pink; } .header-menu .current-menu-item > a { border-bottom-color: purple; color: purple; } .header-menu .current-menu-item > a:hover { border-bottom-color: pink; color: pink; }
Forum: Plugins
In reply to: [Invite Anyone] Change email styleHow did you work this out?
Forum: Reviews
In reply to: [Inline Image Upload for BBPress] Uploads images ? User friendly ??Hi the staging site at
https://houseonfire.backtofrontdesign.co/forums/forum/website-support/Although I don’t believe its a site specific issue, its just the way that the bbpress/wordpress/this plugin media popup appears.
I kind of improved this by adding some instructions as placeholders in the input fields, along with a bunch of css to hide extra buttons that confused the users.
jQuery(function($){ // on upload button click $('body').on( 'click', '#mceu_8-button', function(e){ jQuery("#mceu_44-inp").attr("placeholder", "Click the button on the right to choose an image"); jQuery("#mceu_45").attr("placeholder", "Briefly describe the contents of this image"); }); });
Hi again, just circling back to this after a month. No response from WordPress core support so far :/
Perhaps I’ll ask on bbpress forum.
Thanks will do!
Any clues? Is this something more appropriate to ask on the bbpress forums? Or I think the pagination is controlled by the theme so asking here, and I’m not getting this issue with other themes installed.
Forum: Themes and Templates
In reply to: [Twenty Twenty] Colors and all thatYou can check your color’s here for what is considered a readable and accessible level of contrast https://contrastchecker.online/
You can change the color of your menu items adding something like this in your css
body:not(.overlay-header) .header-navigation-wrapper .primary-menu > li > a { color: orange; } .header-inner .toggle path { fill: orange; }
You might want to be more specific and use a #hex color code in place of orange.
Cool project.
Forum: Plugins
In reply to: [Visual Link Preview] need to help use it available in BBPressTotally fair, its a really nice free plugin that I’ve seen others like rtMedia (that also don’t support bbpress) charge a lot for.
I’d consider to chuck in or tip for your time spent on this, its for a project with a small budget, and would be a really nice feature.
I’ll DM you at your website.
As for the API limit, which service is it using, and what’s the limit? As for my small project, I doubt that it would hit any limits. But for other’s purposes, falling back to just the plain text link seems a good solution.
Forum: Plugins
In reply to: [Visual Link Preview] need to help use it available in BBPressOh so another approach that kind of works,
Instead of the bbpress editor which i suppose is the html editor,
I enabled the visual editor to be used as the default bbpress editor.
https://codex.bbpress.org/enable-visual-editor/Then, with VLP plugin enabled, the user just has to post a url on its own line.
Unlike in the backend, it doesn’t automatically show the preview.
But the newly created topic or reply shows the preview.So that kind of works if you can get your user to know to post a url on its own line.
I don’t know where to start in terms of getting it to automatically replace the link with the preview, as it does on the backend, any ideas?