How to change pagination style.

Posted in: Newspaper
Post count: 33

hello please help me to make pagination like this — > http://prntscr.com/ar67fo

Post count: 23312

Hello Socialfeed,

Unfortunately, our theme does not have such an option to change the pagination design, sorry! Please notice that is not a simple task to change this and also, require custom work. If you need to display more levels in our theme and you are not aware of the steps in this regard, please consider hiring a freelancer/developer to help you because we cannot provide customization services at the moment, sorry! As a hint, regarding to post pagination, please check the next topic here -> https://forum.tagdiv.com/topic/how-to-change-the-single-post-pagination/ and try to implement in your theme.

Hope this helps!

Thank you for your understanding!

Post count: 33

hello,
ok i can understand so lemme know how can we change our pagination number like this – > http://prntscr.com/ardtjr

Post count: 23312

Hello Socialfeed,

Unfortunately, our theme does not have such an option to change the structure of this pagination, sorry! If you want to change this, you have to alter the code from td_page_generator.php but please notice that is not a simple task and is required to have a solid knowledge of PHP/HTML to accomplish that. If you are not aware of the steps, please consider hiring a freelancer/developer to help you. Usually, we recommend the developers from studio.envato.com.

Thank you for your understanding!

Post count: 33

hello,

ok so lemme know how can i make my post page like this in ( http://prntscr.com/arpxb7 )

demo website url – > http://beingindian.com/entertainment/humour/funny-test-answers-by-the-students/?

Post count: 23312

Hello Socialfeed,

If you want to have this element in your homepage, you have to use Block 4 from Visual Composer. For more information about our blocks, please check our documentation here -> https://forum.tagdiv.com/block-settings-tutorial/

Thank you for the message!

Post count: 33

hello,

Thanks for your great responce i need your little intervention.I’m trying to get custom share button position in theme.i’m paste the codes in loop-single-1.php but in post its showing me blank…

please check for refrence –> http://prntscr.com/aseo0p

and i make my pagination in center of post from loop-single-1.php but i cant find now <center> code in same file but pagination is still in center..

—> http://prntscr.com/aseojg

Thanks
reg team socialfeed

Post count: 22421

Hello,
Please try this code and see if the sharing button comes up:
echo do_shortcode('[mashshare]'); the quotation marks are double in your screenshot and php is very sensitive to these things. If it still will not work, maybe the plugin is not compatible with our theme. We can;t say for sure as we have not tested it.
As for the pagination I;m not sure what you want to achieve. Please provide more details so I can understand better.
Thank you!

Post count: 33

hello,
Thanks for ur support everytime.i just want to know how can i publish my ads code below content in which file i do need to paste the ad codes..

demo ss : http://prntscr.com/axqt0v

live link : http://beingindian.com/featured/tiger-shroff-said-hed-like-his-wife-to-be-housewife-type-errm/

Post count: 22421

Hi,
if you want to add the code inside posts at the botom of the content you need to edit the files for each post style you use. Every post style has it;s own file:
http://screencast.com/t/GKMqfOTHR1FZ
Make sure to use the php tags with the shortcode though:
<?php echo do_shortcode('[mashshare]'); ?>
Thanks.

Post count: 33

hello,

i paste ad codes in custom ad 1 and in single-loop.php i paste <?php echo do_shortcode(‘[td_block_ad_box spot_id="custom_ad_1"]‘)?> but still its now showing me any ads so i put ads on td-module-relarted-posts.php
but i want to add these codes in single-loop.php..

ss : http://prntscr.com/axucc9

ss : http://prntscr.com/axuclm

Post count: 22421

Hi,
If the ad code works on a page in the ad box then it will work on posts in the loop-single files like so:
http://screencast.com/t/bEBbqh9fmj the code was added above the related articles and here it is: http://screencast.com/t/mS6OhaIb
Thanks.

Post count: 33

hello,

sir i want to place this ad on below share buttons not below adminbar..

Post count: 22421

Hi,

You can simply paste the code below or above the sharing code like so:
http://screencast.com/t/XHAwSs9kVij
You can try different locations in the file and check the result on the front-end

Thanks.

Post count: 33

hello,

sir i did everything as you mention but still im not able to see that advertisement below social buttons.

ss : http://prntscr.com/axwcsf

Post count: 22421

Hi,
You forgot the semicolon: ; at the end of the php statement.

Post count: 33

hello,

i add semicolon sorrt about that but still their is no ads.

ss : http://prntscr.com/axxjf4

live site url : http://scoobywooby.com/15059/big-stories/cannot-afford-miss-9-names-worlds-beautiful-women-2016

Post count: 22421

Hi,
You are not adding the code in the correct file. you are adding the code in loop-single-6 but you use post template 5 on your post. That is why the code does not work. Please either switch your post to style 6 or put the code in loop-single-5. Every post style you chose has it’s own separate file.
Thank you!

Post count: 33

hello team,
i just need your little help again how can i make my post page like this ( not home page )

ss : http://prntscr.com/ayzwxp

demo website url – > http://beingindian.com/entertainment/humour/funny-test-answers-by-the-students/?

Post count: 49

Do you want to show randome posts below the comment section like this? http://www.mysteryofindia.com/2016/04/awe-inspiring-shiva-temple-kakanmath.html

So here is guide:
1. create new page ( you don’t have to publish it)
2. Click backend Editer to use visual composer
3. Add Block 3 and select the options according to your preferences (like Title, category, Random posts or Latest posts)
4. After you finish adding the block click on Classic Mode to return on normal page
5. You will get a code like this [vc_row][vc_column][td_block_3 custom_title="" sort="random_posts" limit="3" ajax_pagination="infinite" ajax_pagination_infinite_stop="4"][/vc_column][/vc_row]
6. add PHP tag like this: <?php echo do_shortcode('your Visual composer code goes here'); ?>
7. Here is final code that we use on our site: <?php echo do_shortcode('[vc_row][vc_column][td_block_3 custom_title="" sort="random_posts" limit="3" ajax_pagination="infinite" ajax_pagination_infinite_stop="4"][/vc_column][/vc_row]'); ?>
8. Now you have to edit your SIngle_Template.php files. We are using template number 2,5,11 so We have added this code in these files. You can add this code in all the templates that you use.
9. Paste the code at end of file Single_template_##.php after this line </div> <!-- /.td-pb-row -->
and before this line: `</div> <!– /.td-container –>
</article> <!– /.post –>`

Thats it. it will work now.

Last thing add this code in Theme > Custom Code > Advanced CSS > Phones:

.td-pb-row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

It will fix some style issue in mobile phones.

  • This reply was modified 10 years by Josan.
Post count: 33

Hello Guys how are you?

I need ur little support again.first of all latest update of theme was so gud after updation in phone view their is a space after article top ad.please help me out to solve this problem.
Thanks
Reg
Team scoobywooby

ss : https://scontent-sin1-1.xx.fbcdn.net/v/t34.0-12/13228084_865054213621320_603863883_n.jpg?oh=5c3cf306e3339a79163bffc585e06136&oe=573FBC06

site url : scoobywooby.com

Post count: 33

And in desktop views its showing me diffrent ad size we select 728*90 but its not showing.

ss : http://prntscr.com/b5zvli

Post count: 22421

Hi,
I have checked multiple posts on your site and the top ad seems to position properly. There is no spacing issue I could find. Please let us know if you have any further issues with this.
The ad you mentioned 728 pixels width cannot position properly inside the main content as the container width is only 696 pixels wide if a sidebar is used. That is why the next dimension is shown as there is no space for a 728px ad.
Thank you!

Post count: 33

hi,

The other problem is menu bar and search bar is not working in homepage and postpage in mobile view…
weburl : scoobywooby.com

Post count: 33

hello,

Sir i remember so well their is no space between ad and text before..after updation im geeting this issue because of that im geeting low clicks on ads..

ss : http://prntscr.com/b6dl5j

Viewing 25 posts - 1 through 25 (of 34 total)
The forum ‘Newspaper’ is closed to new topics and replies.