tomsk2121
Forum Replies Created
-
Same problem here and its not looks like False positive. Our host send us this waring for 3 websites: public_html/wp-content/plugins/really-simple-ssl/class-admin.php Malware {SA-SNIPPET}PHP.Snippet.ecploit
Login to wp admin was not working (only white blank screen). After renaming Really simple folder via FTP, all starst works.
File class-admin.php was modified and there was lot of new code startet with this:<?php
/** no direct access **/
defined(‘MECEXEC’) or die;
use ICal\ICal;
/**
* Webnus MEC main class.
* @author Webnus <[email protected]>
*/
class MEC_main extends MEC_base
{
/**
* Constructor method
* @author Webnus <[email protected]>
*/
public function __construct()
{
}
/**
* Returns the archive URL of events for provided skin
* @author Webnus <[email protected]>
* @param string $skin
* @return string
*/
public function archive_URL($skin)
{
return $this->URL(‘site’) . $this->get_main_slug() . ‘/’ . $skin . ‘/’;
}`Forum: Plugins
In reply to: [A-Z Listing] Display custom fields after post nameThis also dont work:
<?php $description = term_description(); ?>
Forum: Plugins
In reply to: [A-Z Listing] Display custom fields after post nameHello, I cant figured out how to display taxonomy description. This is my code. Its show description from specific ID. BUT how to show desctiption for each taxonomy? Many thanks for help.
a-z-listing/templates/a-z-listing.php
<ul class="columns <?php echo $a_z_listing_column_class; ?>"> <?php while ( $a_z_query->have_items() ) : $a_z_query->the_item(); $a_z_query->get_the_item_object( 'I understand the issues!' ); ?> <li> <a href="<?php $a_z_query->the_permalink(); ?>"> <?php $a_z_query->the_title(); ?> (<?php $a_z_query->the_item_post_count(); ?>) </a> <?php echo 'Term desctiption: ' . term_description( '11','post_tag' ); ?> </li> <?php endwhile; ?>
Forum: Plugins
In reply to: [Product Filter by WBW] Product Filtration dont work with Ele Custom SkinHello, just filter works great with ele skin on woo shop page. But on regular page dont.
I made video for you.
https://youtu.be/S1UadXzmvpIThank you for any help.