Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter Odisej

    (@odisej)

    Hey Marios,
    Yes, I see that’s why this notification is strange to me.
    The Alert comes from Wordfence security plugin.

    Thanks for advice

    Hey Ben,
    that option does not work. For some reason the theme ignores the number of posts defined within Settings > Reading menu.
    All posts are listed on the home page no matter how set up in Reading menu.

    Thanks for advice
    Darko

    Hi,

    I just want to add one more thing to this question :

    “Does this plugin prevents users recording videos too ?”
    I am not expert, but I afraid that is an essential question, what is the point if video content can be downloaded and shared.

    Would it shold to have some enriched protection to prevent redistribution of videos?

    Best Regards

    Hey ony,
    The above function was working for me, I’ve moved to another theme.
    I’m not a developer for this plugin but I’m willing to help.
    I’m on vacation right now, try with the function I have the insert above it should work,
    Regarding “wp bakery page builder” , check for permalink settings it’s possible that there is some conflict with other plugins.
    Also try to find answer on their site https://kb.wpbakery.com/.

    Cheers

    Hi, @jenlboyle41

    You should insert code into function.php file after <?php> bracket. Your function.php file should look like :

    <?php
    // this code loads the parent's stylesheet (leave it in place unless you know what you're doing)
    
    function theme_enqueue_styles() {
        wp_enqueue_style('parent-style', get_template_directory_uri() . '/style.css');
        wp_enqueue_style('child-style', get_stylesheet_directory_uri() . '/style.css', array($parent_style));
    }
    add_action('wp_enqueue_scripts', 'theme_enqueue_styles');
    add_action('wp_enqueue_scripts', 'theme_enqueue_styles');
    add_action('wp_enqueue_scripts', 'your_theme_styles');
    
    /*  Add your own functions below this line.
        ======================================== */ 
    <em> here you should place a custome code to rename “Portfolio” to “Resource Library” </em>
    

    Yes,
    You have to create a child theme, and add this line of code:

    Change the label from Portfolio to Project
    function prefix_change_portfolio_labels( array $args ) {
    	$labels = array(
    		'name'               => __( 'Projects', 'portfolioposttype' ),
    		'singular_name'      => __( 'Project', 'portfolioposttype' ),
    		'add_new'            => __( 'Add New Item', 'portfolioposttype' ),
    		'add_new_item'       => __( 'Add New Project', 'portfolioposttype' ),
    		'edit_item'          => __( 'Edit Project', 'portfolioposttype' ),
    		'new_item'           => __( 'Add New Project', 'portfolioposttype' ),
    		'view_item'          => __( 'View Item', 'portfolioposttype' ),
    		'search_items'       => __( 'Search Projects', 'portfolioposttype' ),
    		'not_found'          => __( 'No projects found', 'portfolioposttype' ),
    		'not_found_in_trash' => __( 'No projects found in trash', 'portfolioposttype' ),
    	);
    	$args['labels'] = $labels;
    
    	// Update project single permalink format, and archive slug as well.
    	$args['rewrite']     = array( 'slug' => 'project' );
    	$args['has_archive'] = true;
    	// Don't forget to visit Settings->Permalinks after changing these to flush the rewrite rules.
    
    	return $args;
    }

    The most important and oldest rule: “never, never, ever never used the main theme for this correction”

    If you want to custom theme for your needs always use ChildTheme > So if you want in the footer appears something else place this code :

    `<?php
    $credits = ‘© ‘ . date( ‘Y’ ) . ‘ ‘ . get_bloginfo( ‘name’, ‘display’ );
    echo apply_filters( ‘footer_credits’, $credits );
    ?>

    Hi,
    I have the same problem.Slider does not appear at all home pages only on the main.

Viewing 8 replies - 1 through 8 (of 8 total)