Marco

Members
  • Content Count

    65
  • Last visited

Posts posted by Marco


  1. ^^ Gonna try it anyway, lmao cheers

     

    EDIT: It works. Took some time to generate a few, but it works.

     

    EDIT 2: Thought I'd be nice and slap it onto my projects VPS. Here you lot go x

     

     

     

    (I have no idea if hide tags work with replies as well, but I added them to help out the OP (;

     

    Holy shit, I had no idea you could do that lol


  2. I'm selling my ZeroDay Client account because I don't play Minecraft anymore, hence why I'm giving it for kinda cheap. It's got a lifetime subscription, so don't worry about that. I don't know that much about it, I haven't used it in ages.

     

    I'm looking for around 4.5 euro for it (it costs 10 euro with the taxes, so it's less than half the price).

    PM me if you want to help me crack it, we could come up with a price, a much lower price.


  3. It's a cool theme, here's a demo https://themeforest.net/item/avada-responsive-multipurpose-theme/full_screen_preview/2833226

     

     

    [hide]1. Install the theme https://eleaks.net/#files%2Fwordpress%2FAvada (credit: @air )

    2. Upload the theme on Wordpress (google it if you don't know how)

    3. After that, go to your File Manager (cPanel) and go to where you've installed Avada > includes > admin-screens

    4. Edit the file "demos.php" into 

    <?php
    /**
    * Demos Admin page.
    *
    * @author     ThemeFusion
    * @copyright  (c) Copyright by ThemeFusion
    * @link       http://theme-fusion.com
    * @package    Avada
    * @subpackage Core
    */
    
    // Do not allow directly accessing this file.
    if ( ! defined( 'ABSPATH' ) ) {
    exit( 'Direct script access denied.' );
    }
    ?>
    
    
    
    
    
    <?php printf( esc_attr__( 'Importing a demo provides pages, posts, images, theme options, widgets, sliders and more. IMPORTANT: The included plugins need to be installed and activated before you install a demo. Please check the "System Status" tab to ensure your server meets all requirements for a successful import. Settings that need attention will be listed in red. %s.', 'Avada' ), '' . esc_attr__( 'View more info here', 'Avada' ) . '' ); ?>
    
    <?php
    $demos = Avada_Importer_Data::get_data();
    $all_tags = array(
    'all' => esc_attr__( 'All Demos' ),
    );
    foreach ( $demos as $demo => $demo_details ) {
    if ( ! isset( $demo_details['tags'] ) ) {
    $demo_details['tags'] = array();
    }
    $all_tags = array_replace_recursive( $all_tags, $demo_details['tags'] );
    }
    ?>
    <?php
    /**
    * WIP:
    * The tag-selector is hidden for now, we can enable it when needed
    * simply by removing the "display:none" from the wrapper.
    */
    ?>
    
    <?php foreach ( $all_tags as $key => $label ) : ?>
    <?php // @codingStandardsIgnoreLine ?>
    <?php echo esc_attr( $label ); ?>
    <?php endforeach; ?>
    
    
    
    
    
    <?php
    // Make sure we don't show demos that can't be applied to this version.
    foreach ( $demos as $key => $val ) {
    if ( isset( $val['minVersion'] ) ) {
    $theme_version = Avada_Helper::normalize_version( $this->theme_version );
    $min_version   = Avada_Helper::normalize_version( $val['minVersion'] );
    if ( version_compare( $theme_version, $min_version ) < 0 ) {
    unset( $demos[ $key ] );
    }
    }
    }
    ?>
    <?php foreach ( $demos as $demo => $demo_details ) : // Loop through all demos. ?>
    <?php if ( ! isset( $demo_details['tags'] ) ) : ?>
    <?php $demo_details['tags'] = array(); ?>
    <?php endif; ?>
    <?php $tags = array_keys( $demo_details['tags'] ); ?>
    
    
    
     <?php echo ( ! empty( $demo_details['previewImageRetina'] ) ) ? 'data-src-retina="' . esc_url_raw( $demo_details['previewImageRetina'] ) . '"' : ''; ?>>
    
    
    
    
    <?php echo esc_attr( ucwords( str_replace( '_', ' ', $demo ) ) ); ?>
    
    <?php esc_attr_e( 'Import', 'Avada' ); ?>
    <?php $preview_url = ( 'classic' === $demo ) ? $this->theme_url : $this->theme_url . str_replace( '_', '-', $demo ); ?>
    <?php esc_attr_e( 'Preview', 'Avada' ); ?>
    
    
    
    
    
    
    <?php if ( isset( $demo_details['new'] ) && true === $demo_details['new'] ) : ?>
    <?php esc_attr_e( 'New', 'Avada' ); ?>
    <?php endif; ?>
    
    
    <?php endforeach; ?>
    
    
    
    
    <?php esc_attr_e( 'Thank you for choosing Avada. We are honored and are fully dedicated to making your experience perfect.', 'Avada' ); ?>
    
    
    
    

     

    5. After that, edit the file "registration.php" into 

    <?php
    /**
    * Registration Admin page.
    *
    * @author     ThemeFusion
    * @copyright  (c) Copyright by ThemeFusion
    * @link       http://theme-fusion.com
    * @package    Avada
    * @subpackage Core
    */
    
    // Do not allow directly accessing this file.
    if ( ! defined( 'ABSPATH' ) ) {
    exit( 'Direct script access denied.' );
    }
    ?>
    
    
    
    <?php esc_attr_e( 'Thank you for choosing Avada. We are honored and are fully dedicated to making your experience perfect.', 'Avada' ); ?>
    
    
    

    6. Save both then go to www.your_website.com/wp-admin/ (or whatever you set your Wordpress control panel thing to), go to Avada, install the required Fusion plugins then go to demos.

    7. ???

    8. Profit[/hide]

    Please leave a like, it took me ages to figure it out