Forum Replies Created

Viewing 15 replies - 1 through 15 (of 21 total)
  • Hi Seekfreaks,

    Can you please share your website link and tell me the theme you are currently using. ?

    Regards,
    Haisum

    Hi StevePortigal,

    Sorry to hear that. Let me tell you what may be the reasons for that.
    If you aren’t using the theme other than the WordPress default themes then you may ask that question at the theme support area, and if not then lets come to point.First log into your website, and access that particular page that should have page content instead of post and check if the option in the admin bar at the front end if it is showing the edit post option or the edit page option, from this we can say that it is coming from page or post.

    If page then you need to check the templates you are using for other pages, they must have the same template for having same style. And if there is edit post option then it is coming from post and you need to check the url, may the same url also exist in post and pages(slug of post).

    Let me know if this makes any sense to you.
    Feel free to ask any question
    Regards,
    Haisum

    @karunaray,

    It absolutely possible to track it, if you want me to do it for you please let me know via email: at [Address redacted]
    and if you want to do it then find the files and find the titles in them.As i have done it a lot of times.

    Regards,
    Haisum

    Hi @tusharsoni00786,

    After studying what actually you are trying to achieve, i have the solution.
    Suppose you are having two categories
    1-Hot
    2-Fresh.

    If user select fresh then latest post of fresh category should popout and vice versa.

    If the front end layout of both the categories are same then you just need to style your category.php file for that and when user will click hot if permalinks are set to ‘postname’ the hot category data will automatically be loaded having the category name in the url like, abc.com/hot or abc.com/fresh.
    And if you are having different layouts for your website then you need to use custom category template plugin that will automatically assign different templates for your category and for that reason you just need to go to the categories area select your category and assign the newly created template of your own choice for that particular category.
    Link for custom category template plugin Link

    Hopefully, this is the solution you were looking for.
    Let me know in case of any further question

    Regards,
    Haisum

    @tarot thyme,

    It will be better if you study the theme documentation or ask question as theme’s support forum for that Forum Link

    Regards,
    Haisum

    #vpveer7,

    It would be nice if you share your site link and also mention the plugin you are using for category custom fields..
    Thanks

    Regards,
    Haisum

    Yes please check this,
    here these are custom post types.
    array( 'wuelfrath' , 'mettmann', 'haan', 'neanderland' )
    And
    these are multiple categories in which they are coming,
    'category_name' => array( 'kurz-notiert-neanderland' , 'kurz-notiert-mettmann', 'kurz-notiert-haan', 'kurz-notiert-wuelfrath' )

    <?php
    
    $the_query = new WP_Query(
    	array(
    		'post_type' => array( 'wuelfrath' , 'mettmann', 'haan', 'neanderland' ),
    		'posts_per_page' => 5,
    		'category_name' => array( 'kurz-notiert-neanderland' , 'kurz-notiert-mettmann', 'kurz-notiert-haan', 'kurz-notiert-wuelfrath' )
    	)
    );
    ?>
    
    <?php if ( $the_query->have_posts() ) : ?>
    
    	<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
    	<!-- your code here -->
    	<?php endwhile; ?>
    
    	<?php wp_reset_postdata(); ?>
    <?php endif; ?>

    Let me know if this is what you are trying to achieve.

    Regards,
    Haisum

    @karunaray,

    Sorry to hear that , archives and some how tags or some other plugins when ever they are used as a widget they came with their default titles which are hard coded in their respective files, if you don’t need them you just go to that files, if archives used then find archives.php in your theme or if tags then tags, of if some other plugin then you need to dig into the plugin for that cause.
    Find the file, find the title and remove or comment it.
    Hope this will fix your problem

    Regards,
    Haisum

    @blueicebreaker,

    Its very simple, wherever you are placing, news, books or website, just place the link of your sub domain in the href link instead of actually category links.
    Thing to note over here, you don’t need to create categories in the parent domain, that can be handle by creating custom links from the menu if you are placing things in the menu.
    Let me know in case of any further question.

    Regards,
    Haisum

    @vera,
    Hmm.. that’s very nice, feeling happy that it solved the problem, i also don’t have idea about it that how it is solved but it is haha….
    No problem at all for help.. Love to help my fellow beings, let me know in case of any further inquiry..

    Haisum Usman

    Hi @honma, I have reviewed your site, it seems to be your category slugs aren’t the one you are using right now, Go to your dashboard->post->categories->hover over the category you have created and not showing at the front end and click the view link beneath the title and then check if it is showing correctly at the front end or not and also make sure you have some post may be be dummy post added in that particular category.

    Let me know in case of any further inquiry.
    Best of luck..

    @fuser312213 brother you need to move the php code that is placed in the header.php to the place where you want to place. It would be more reasonable if you share your site’s url..

    #oxenpower can you please share your website so i can give you instructions regarding that what exactly is required to full fill your requirement.

    @tonyx4x44 no problem dude, just need to confirm few things first, are you using child theme of the default wordpress themes like twentyfourteen or fifteen etc.. ?? if yes then there is an option in the appearance->customize tab of the panel left sidebar menu. From there you can handle it however, you need to right a little css for that to meet the requirement, can you pleas share your site’s link..

    @iwebslinger i prefer you should use the ‘Intuitive Custom Post Order’ Link and from the panel just drag your post above and below it will automatically be re-ordered as per your set order in the panel. And at the front end you just need to call the post in your while loop in between the template where you want to show your post.

    Let me know if this works out for your.

Viewing 15 replies - 1 through 15 (of 21 total)