Hardcover Edition – The Complete Ethiopian Bible in English | 88 Scriptures Including Apocrypha, Book of Enoch, Jubilees & Sibylline Oracles | Study Christian Bible | Handy Size Hardcover Edition – The Complete Ethiopian Bible in English | 88 Scriptures Including Apocrypha, Book of Enoch, Jubilees & Sibylline Oracles | Study Christian Bible | Handy Size

const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = '218b0dd7-dcf5-45e9-b967-4a1dd3b46ff6'; this.isRTL = SPZ.win.document.dir === 'rtl'; this.isAddingToCart_ = false; // 加购中状态 } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // 监听事件 this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = 'c37d6271-1693-4bab-8f70-91be93e74698'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // 重新渲染 抖动问题处理 this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // 绑定事件 bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // 是否popover面板点击范围 if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // 兼容主题 this.toggleProductSticky(true); }) // 监听变体变化 document.addEventListener('dj.variantChange', async(event) => { // 重新渲染 const variant = event.detail.selected; if (variant.product_id == 'c37d6271-1693-4bab-8f70-91be93e74698' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // 兼容主题 handleFitTheme() { // top 属性影响抖动 let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // 兼容 wind/flash /hero 主题 (sticky属性影响 popover 层级展示, 会被其他元素覆盖) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // 还原该主题原有的sticky属性值 productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // 兼容主题 this.toggleProductSticky(); }); // 加购事件 this.registerAction('handleAddToCart', (invocation) => { // 阻止事件冒泡 const event = invocation.event; if (event) { event.stopPropagation(); event.preventDefault(); } // 如果正在加购中,直接返回 if (this.isAddingToCart_) { return; } const quantity = invocation.args.quantity || 1; this.addToCart(quantity); }); } // 加购方法 async addToCart(quantity) { // 设置加购中状态 this.isAddingToCart_ = true; const productId = 'c37d6271-1693-4bab-8f70-91be93e74698'; const variantId = this.variant_id; const url = '/api/cart'; const reqBody = { product_id: productId, variant_id: variantId, quantity: quantity }; try { const data = await this.xhr_.fetchJson(url, { method: 'POST', body: reqBody }); // 触发加购成功提示 this.triggerAddToCartToast_(); return data; } catch (error) { error.then(err=>{ this.showToast_(err?.message || err?.errors?.[0] || 'Unknown error'); }) } finally { // 无论成功失败,都重置加购状态 this.isAddingToCart_ = false; } } showToast_(message) { const toastEl = document.querySelector("#apps-match-drawer-add_to_cart_toast"); if (toastEl) { SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast(message); }); } } // 触发加购成功提示 triggerAddToCartToast_() { // 如果主题有自己的加购提示,则不显示 const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy'); if (themeAddToCartToastEl) return; // 显示应用的加购成功提示 this.showToast_("Added successfully"); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);
class SpzCustomDiscountBundle extends SPZ.BaseElement { constructor(element) { super(element); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } mountCallback() {} unmountCallback() {} setupAction_() { this.registerAction('showAddToCartToast', () => { const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy') if(themeAddToCartToastEl) return const toastEl = document.querySelector('#apps-match-drawer-add_to_cart_toast') SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast("Added successfully"); }); }); } buildCallback() { this.setupAction_(); }; } SPZ.defineElement('spz-custom-discount-toast', SpzCustomDiscountBundle);
$36.99
$69.00
people are viewing this right now
Style: Standard Reading Edition
Option:
Please select a Option
Quantity
Product was out of stock.
Product is unavailable.
Free worldwide shipping

Enjoy free shipping on every order, delivered to your doorstep no matter where you are in the world.

Free returns

Shop with confidence with our hassle-free returns policy, ensuring you love what you buy.

Sustainably made

Designed with the planet in mind, all our products are committed to sustainable practices.

Secure payments

Your payment information is always protected with our advanced, encrypted checkout security.

Description

Why Choose the Ethiopian Bible

The only English Bible that includes the full Ethiopiancanon with missing apocrypha like Enoch and Jubileesplus over fourteen hundred ancient texts not found inany standard KJv edition

See the Scriptures Like Never Before

Immerse yourself in the Bible’s most powerful moments through visuals that bring its sacred chapters to life. This isn’t just reading. It’s witnessing the ancient world of Scripture unfold before your eyes.

Beautifully lllustratedSacred Art

Each page comes alive with breathtaking illustrations byGustave Doré. bringing ancient scripture to life throughtimeless artistry.These detailed engravings transformevery reading into a visual journey.

Real Reader Experiences

Honestly did not expect this Bibleto be this complete.l opened itand immediately went straight toEnoch becauselhad beenwanting to read it forever. Theprint feels solid the pages feelnice and the QR code opened thewhole digital library in like twoseconds.l have been reading theprinted book at night andlistening to the audiobook whiledriving. Totally worth it.
-Monique R★★★★★This is wild.l grew up onlyknowing the regular sixty six bookBible and had no idea how muchwas missing. Having all eightyeight books printed plus all thedigital stuff makes this feel like awhole library.The video lessonsare actually way better than lexpected.Been learning a lotmore than i thought i would-Danielle P★★★★★
I bought this as a gift for mymom but ended up keeping it formyself first because theillustrations were so beautiful.The writing is clear and easy toread and the extra books reallyadd depth to stuff i neverunderstood growing up.Accessing the digital texts was super simple too.
-Tiffany L★★★★★
I've read the Bible but not like this. This Bible is very in-depth and aesthetically done.lt is more detailed and draws youmore closer to the spiritual side. it is enlightening and opens the mind to all the happenings of past times. A great bookindeed.
-Latoya M★★★★★
This amazing Bible offers a profound exploration of the Ethiopian biblical canon. revealing a rich tapestry of textstraditions. and theological perspectives that expand our understanding of christianity and the Bible. A remarkablejourney for anyone interested in biblical studies and Christian diversity.
-Brianna H★★★★★As a religion major. I needed this Bible to complete an assignment on the books missing from the traditional canon. This edition has been incredibly helpful for my research. and I’m truly grateful it was available so I could have it with me whenever I needed it.I highly recommend this purchase.-Alicia W★★★★★

Standard Reading Edition
Ideal for daily reading & study
Collector’s Gift Edition
Beautifully packaged — ready for gifting
Frequently Asked Questions
Why does the Ethiopian Bible have 88 books instead of 66?
The Ethiopian Orthodox Church has preserved scriptures that wereremoved or excluded from Western Bibles centuries ago. Books like l Enoch.Jubilees. and others were considered sacred by early Christians and arestill quoted in the New Testament-but you won't find them in most Biblestoday.The Ethiopian canon represents one of the oldest and mostcomplete collections of biblical texts in existence.
 
What books are included that aren't in my current Bible?
You'll find texts like 1 Enoch (quoted in Jude). the Book of Jubilees. 4 Baruch.and the Shepherd of Hermas. among others. These aren't "new" books-they're ancient texts that Ethiopian Christians have faithfully preserved forover 1.600 years while other traditions set them aside.
 
Is this a legitimate translation or some kind of edited version?
This is a faithful English translation of the Ethiopian Orthodox canon.Ethiopia's Christian tradition predates most Western denominations-theEthiopian eunuch in Acts 8 is considered one of the first Gentile converts.These scriptures have been continuously used in Ethiopian worship forcenturies.
 
Why haven't iheard about these missing books before?
Most Western seminaries and churches simply don't teach about them. TheProtestant Reformation standardized a 66-book canon. and that's whatmost of us grew up with. But early church fathers referenced many of thesetexts. and they remained part of Ethiopian Christianity throughout history.
 
Is this Bible difficult to read?
Not at all. lt's translated into clear. readable English. You don't need anyspecial background-just an open heart and curiosity about scriptures yourancestors may have known.
 
Who is this Bible for?
Anyone hungry for more of God's word. whether you're a lifelong believerwho feels something's been missing. a serious student of scripture. orsimply curious about what else the early church considered holy-this is foryou. 

Material & Construction

 Soft touch premium paperback coverdesigned for long term durability.High density ink for crisp readable text evenin smaller font sections
.Strong lay flat binding that prevents pagecurling during study sessions
.Thick smooth interior pages for comfortablereading and reduced bleed through.lllustrated sections with classic artwork forenhanced study and visual context*Approximately eight hundred to one thousandpages depending on print batch.Handy size format that fits easily on desksnightstands and bags 

What's included

 .Complete printed Ethiopian Bible containingall eighty eight canonical Ethiopian Orthodoxbooks
.QR code inside the book giving instant accessto the full digital library
.One thousand four hundred and twelve digitalapocrypha pseudepigrapha and ancient texts.Complete one hundred hour audiobook of theentire Ethiopian canon
Two hundred and twenty hours of videolessons for deeper learning.Master Apocrypha Collection including EnochJubilees and other rare writings
lllustrated interior pages and enhanced studyfriendly layout
.FaithMade support for digital access andcontent assistance

Q: Is this the complete Bible?
A: Yes. this is the complete Ethiopian Bible in a hardcover collector’s edition.

Q: What language is this in?
A: This edition is based on the original Ethiopian (Geʽez) texts and has been carefully translated and referenced for accuracy. It is designed for theological study and scholarly research. with translations compiled through extensive consultation of Ethiopian-language sources.

Q: Is gift wrapping available?
A: Yes. Gift wrapping is available at checkout. making it a meaningful and thoughtful gift for faith study. collectors. and theological researchers.

Q: What if it arrives damaged?
A: We offer a 30-day no-hassle return and refund guarantee for your peace of mind.