MassimoM
Forum Replies Created
-
Forum: Plugins
In reply to: [Disable REST API] Block Yoast and CF7Now i deactivate and reactive all plugin, all seems ok now…
Stranger things happens.
😀
Forum: Plugins
In reply to: [Disable REST API] Block Yoast and CF7i try to check (whitelist) yoast endpoint. But for logged and not logged users the sitemap_xml is blocked
Forum: Plugins
In reply to: [AMP] Youtube videos not showingGreat! now try to investigate more in deep.
Thanks!Forum: Plugins
In reply to: [AMP] Youtube videos not showingHi,
I also have a problem with youtube video embeded into post, video not showing, and AMP test tools say that the amp-youtube script not included.Forum: Plugins
In reply to: [Contextual Related Posts] Remove div class=”crp_title”hi to all, i have the same issue with <div class=”crp_title”>, and so i check the plugin code and found the filter: crp_list_link
My solution for widget output whitout thumbnail is:
if( function_exists('get_crp') ) { add_filter('crp_list_link', 'fc_crp_list_link', 10, 3); function fc_crp_list_link( $output, $result, $arg ){ //var_dump($output); $output = str_replace('<a href', '<h5><a href', $output); $output = str_replace('</a>', '</a></h5>', $output ); $output = str_replace('<div class="crp_title">', '', $output); $output = str_replace('</div>', '', $output ); return $output; }}is not so clean, but working well, don’t touch css only add filter in functions.php.
my2cents
Forum: Plugins
In reply to: [WP Job Manager] Confirmation Page after submitting resumethanks for reply.
I have an active license but on support page i don’t see any ticket system!Forum: Plugins
In reply to: [WP Job Manager] Confirmation Page after submitting resumeNow i resolved with css
.resume-submitted{ @extend .text-success; & + .applying_for{ display: none; visibility: hidden; & + .job-manager-application-wrapper{ display: none; visibility: hidden; } } }But i don’t like this solution.
accept suggestion.
Thanks
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Supporto MU ?ok, thanks