danpastori
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: WordPress tutorial siteSounds vague but anything is possible with WordPress. For tutorials you could look into custom post types and make a certain format for your tutorials. I see your site is programming based and wp has some nice plugins for syntax highlighting. Let me know if you have any specific questions referring to tutorial sites. I run a small one myself and can lend a hand.
Forum: Fixing WordPress
In reply to: Not allowing me to embed videos?WordPress uses oEmbed to embed videos. Check out: https://codex.www.ads-software.com/Embeds hopefully it will lead you in the right direction. Otherwise send over the youtube video link and I can help generate the proper embed code.
Forum: Plugins
In reply to: How to add a custom button inside my post?Are you building a custom template for the page, or just trying to insert a button through the TinyMCE editor?
If you are building a custom template, you could make a list of the products post category and use the_excerpt() which will make a read more type structure:
https://codex.www.ads-software.com/Function_Reference/the_excerptForum: Fixing WordPress
In reply to: How to link category post thumbs to full size imagesCheck out :
<?php if ( has_post_thumbnail()) { $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'large'); echo '<a href="' . $large_image_url[0] . '" title="' . the_title_attribute('echo=0') . '" >'; echo get_the_post_thumbnail($post->ID, 'thumbnail'); echo '</a>'; } ?>
I got the code from https://codex.www.ads-software.com/Function_Reference/get_the_post_thumbnail#Post_Thumbnail_Linking_to_large_Image_Size. You should be able to link to the large image URL returned from get_the_post_thumbnail.
Forum: Plugins
In reply to: storing login info on a wordpress platformCheck out https://buddypress.org/. It’s built as a WordPress plugin and does a lot of Social Networking. You can even get plugins specifically for Buddy Press.
Forum: Networking WordPress
In reply to: The main blog is not accessibleHi,
Could you send over your .htaccess file? My first guess would be some re-direct or wrong configuration. Other places to check are database, specifically, the wp_site, wp_blogs, and wp_options (specifically the siteurl row) tables. Make sure that the setup is consistent among these tables as well.